Spaces:
Paused
Paused
| from fastapi import FastAPI | |
| from app.auth import router as auth_router | |
| from app.routes import router as api_router | |
| from app.proxy import router as proxy_router | |
| app = FastAPI() | |
| app.include_router(auth_router, prefix="/auth") | |
| app.include_router(api_router, prefix="/api") | |
| app.include_router(proxy_router, prefix="/proxy") | |
| def root(): | |
| return {"message": "FastAPI API Key System Running!"} | |