Spaces:
Sleeping
Sleeping
| """FastAPI routers grouped by concern. | |
| Each module in this package defines a single ``router = APIRouter(...)`` | |
| and exposes the route handlers. The actual app lives in | |
| :mod:`app.main` and mounts every router with ``app.include_router(...)``. | |
| """ | |
| from . import auth | |
| from . import xp | |
| from . import leaderboard | |
| from . import training | |
| from . import terminal | |
| from . import certificates | |
| from . import onevone | |
| from . import mentor | |
| from . import chatbot | |
| from . import daily_challenge | |
| from . import ai_recommend | |
| __all__ = [ | |
| "auth", | |
| "xp", | |
| "leaderboard", | |
| "training", | |
| "terminal", | |
| "certificates", | |
| "onevone", | |
| "mentor", | |
| "chatbot", | |
| "daily_challenge", | |
| "ai_recommend", | |
| ] | |