yc / main.py
yuchou87's picture
Add application file
3c5efac
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def index():
return {"hello": "index"}