Ideas / app.py
qqwjq1981's picture
Update app.py
22e41e6 verified
raw
history blame
120 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def index():
return {"message": "App is running"}