Initial commit
This commit is contained in:
18
app/routes/__init__.py
Normal file
18
app/routes/__init__.py
Normal file
@@ -0,0 +1,18 @@
|
||||
"""Routes package."""
|
||||
|
||||
from .optimization import router as optimization_router
|
||||
from .health import router as health_router
|
||||
from .cache import router as cache_router
|
||||
from .ml_admin import router as ml_router, web_router as ml_web_router
|
||||
from .batch_analytics import router as batch_analytics_router
|
||||
from .riders import router as riders_router
|
||||
|
||||
__all__ = [
|
||||
"optimization_router",
|
||||
"health_router",
|
||||
"cache_router",
|
||||
"ml_router",
|
||||
"ml_web_router",
|
||||
"batch_analytics_router",
|
||||
"riders_router",
|
||||
]
|
||||
Reference in New Issue
Block a user