Add more services
This commit is contained in:
22
shared/notifications/__init__.py
Normal file
22
shared/notifications/__init__.py
Normal file
@@ -0,0 +1,22 @@
|
||||
# ================================================================
|
||||
# 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'
|
||||
]
|
||||
Reference in New Issue
Block a user