Files
gommi/gommi_server.py

8 lines
111 B
Python
Raw Normal View History

2022-04-21 19:23:01 +09:00
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def index():
return {"message": "Hello World"}