DocketTest / app.py
scott12355's picture
Update app.py
6f8a9f6 verified
raw
history blame
117 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World"}