22 lines
504 B
Python
22 lines
504 B
Python
|
|
# ================================================================
|
||
|
|
# 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'
|
||
|
|
]
|