fastapi / app.py
steveagi's picture
init
0a5f589
raw
history blame
113 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "PGAI API"}