blob: ee60be1f964d199ffd46e7402dc3ca3fb4585e95 [file] [log] [blame] [edit]
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World"}