fcfffc / app.py
coollsd's picture
Create app.py
a94eb1f verified
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World"}