advent22/api/advent22_api/routers/__init__.py

10 lines
209 B
Python
Raw Normal View History

2022-10-09 00:18:15 +00:00
from fastapi import APIRouter
2023-09-06 18:46:37 +00:00
from . import days, general, user
2022-10-09 00:18:15 +00:00
router = APIRouter(prefix="/api")
router.include_router(days.router)
2022-10-14 22:47:48 +00:00
router.include_router(general.router)
2022-11-15 22:17:32 +00:00
router.include_router(user.router)