-
Notifications
You must be signed in to change notification settings - Fork 283
Expand file tree
/
Copy path__init__.py
More file actions
22 lines (20 loc) · 791 Bytes
/
__init__.py
File metadata and controls
22 lines (20 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from fastapi import APIRouter
from .health import router as health_router
from .login import router as login_router
from .logout import router as logout_router
from .oauth import router as oauth_router
from .posts import router as posts_router
from .rate_limits import router as rate_limits_router
from .tasks import router as tasks_router
from .tiers import router as tiers_router
from .users import router as users_router
router = APIRouter(prefix="/v1")
router.include_router(health_router)
router.include_router(login_router)
router.include_router(logout_router)
router.include_router(oauth_router)
router.include_router(posts_router)
router.include_router(rate_limits_router)
router.include_router(tasks_router)
router.include_router(tiers_router)
router.include_router(users_router)