Api routes refactor

This commit is contained in:
marc
2025-07-28 22:45:45 +02:00
parent 6aad7a069e
commit 8cdb9340fd
26 changed files with 103 additions and 29 deletions

View File

@@ -0,0 +1,10 @@
from folkugat_web.api.router import get_router
from . import index, live, set_page
router = get_router()
router.include_router(index.router)
router.include_router(live.router)
router.include_router(set_page.router)
__all__ = ["router"]