minimalFlaskAPI / app.py
filipeclduarte's picture
update app
7eacc64
raw
history blame
117 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World"}