first commit

This commit is contained in:
Dwindi Ramadhana
2026-03-21 23:32:59 +07:00
commit cf193d7ea0
57 changed files with 17871 additions and 0 deletions

13
app/routers/__init__.py Normal file
View File

@@ -0,0 +1,13 @@
"""
API routers package.
"""
from app.routers.sessions import router as sessions_router
from app.routers.tryouts import router as tryouts_router
from app.routers.reports import router as reports_router
__all__ = [
"sessions_router",
"tryouts_router",
"reports_router",
]