Initial commit - production deployment

This commit is contained in:
2026-01-21 17:17:16 +01:00
commit c23d00dd92
2289 changed files with 638440 additions and 0 deletions

15
shared/routing/__init__.py Executable file
View File

@@ -0,0 +1,15 @@
"""
Shared routing utilities for consistent URL structure across services
"""
from shared.routing.route_builder import RouteBuilder, RouteCategory
from shared.routing.route_helpers import build_base_route, build_dashboard_route, build_analytics_route, build_operations_route
__all__ = [
'RouteBuilder',
'RouteCategory',
'build_base_route',
'build_dashboard_route',
'build_analytics_route',
'build_operations_route',
]