ccccnbo2 / app.py
coollsd's picture
Update app.py
cb2e16b verified
raw
history blame contribute delete
115 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World"}