Files
bakery-ia/services/alert_processor/app/api/__init__.py

9 lines
182 B
Python
Raw Normal View History

2025-10-21 19:50:07 +02:00
"""
Alert Processor API Endpoints
"""
from .analytics import router as analytics_router
from .alerts import router as alerts_router
2025-10-21 19:50:07 +02:00
__all__ = ['analytics_router', 'alerts_router']