16 lines
444 B
Python
16 lines
444 B
Python
"""
|
|
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',
|
|
]
|