gemini / app /api /__init__.py
Song4612's picture
Upload 25 files
709fc08 verified
raw
history blame contribute delete
216 Bytes
from app.api.routes import router, init_router
from app.api.dashboard import dashboard_router, init_dashboard_router
__all__ = [
'router',
'init_router',
'dashboard_router',
'init_dashboard_router'
]