mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2024-11-23 16:23:00 +00:00
9 lines
209 B
Python
9 lines
209 B
Python
from fastapi import APIRouter
|
|
|
|
from . import days, general, user
|
|
|
|
router = APIRouter(prefix="/api")
|
|
|
|
router.include_router(days.router)
|
|
router.include_router(general.router)
|
|
router.include_router(user.router)
|