minimalFlaskAPI / app.py
filipeclduarte's picture
init app
5033f23
raw
history blame
116 Bytes
from fastapi import FastAPI
app = FastAPI()
app.get("/")
async def root():
return {"message": "Hello World"}