File size: 700 Bytes
80a4a65
 
 
 
 
 
 
 
 
 
 
 
 
 
a6e0de1
338517d
0b3bc37
05a9e8e
80a4a65
 
 
 
 
 
 
 
 
a6e0de1
338517d
0b3bc37
05a9e8e
80a4a65
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
"""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",
]