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