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