Files
bakery-ia/shared/notifications/__init__.py

22 lines
504 B
Python
Raw Normal View History

2025-08-21 20:28:14 +02:00
# ================================================================
# shared/notifications/__init__.py
# ================================================================
"""
Shared Notifications Module - Alert integration using existing notification service
"""
from .alert_integration import (
AlertIntegration,
AlertSeverity,
AlertType,
AlertCategory,
AlertSource
)
__all__ = [
'AlertIntegration',
'AlertSeverity',
'AlertType',
'AlertCategory',
'AlertSource'
]