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