21 lines
506 B
Python
21 lines
506 B
Python
"""
|
|
Route configuration registry for Event Service.
|
|
|
|
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 .account.endpoints import ACCOUNT_RECORDS_CONFIG
|
|
|
|
|
|
# Registry of all route configurations
|
|
ROUTE_CONFIGS = [
|
|
ACCOUNT_RECORDS_CONFIG,
|
|
]
|
|
|
|
|
|
def get_route_configs() -> List[Dict[str, Any]]:
|
|
"""Get all registered route configurations."""
|
|
return [ACCOUNT_RECORDS_CONFIG]
|