David Prince
production: clean source snapshot — no history bloat
71b4454
Raw
History Blame Contribute Delete
196 Bytes
from fastapi import FastAPI
from backend import mcp_routes
app = FastAPI(title="Generated API")
app.include_router(mcp_routes.router)
@app.get("/")
async def root():
return {"status": "ok"}