initial project setup with README and ignore

This commit is contained in:
2026-04-08 15:13:42 +05:30
commit 2d5688cb35
47 changed files with 7929 additions and 0 deletions

8
app/routes/__init__.py Normal file
View File

@@ -0,0 +1,8 @@
"""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
__all__ = ["optimization_router", "health_router", "cache_router", "ml_router", "ml_web_router"]