19 lines
452 B
Python
19 lines
452 B
Python
"""
|
|
Route configuration registry.
|
|
|
|
This module collects and registers all route configurations from different modules
|
|
to be used by the dynamic route creation system.
|
|
"""
|
|
|
|
from typing import Dict, List, Any
|
|
from .events.auth.endpoints import AUTH_CONFIG
|
|
|
|
|
|
# Registry of all route configurations
|
|
ROUTE_CONFIGS = [AUTH_CONFIG]
|
|
|
|
|
|
def get_route_configs() -> List[Dict[str, Any]]:
|
|
"""Get all registered route configurations."""
|
|
return ROUTE_CONFIGS
|