Files
bakery-ia/services/alert_processor/app/api/__init__.py
2025-11-27 15:52:40 +01:00

10 lines
264 B
Python

"""
Alert Processor API Endpoints
"""
from .analytics import router as analytics_router
from .alerts import router as alerts_router
from .internal_demo import router as internal_demo_router
__all__ = ['analytics_router', 'alerts_router', 'internal_demo_router']