Add more services

This commit is contained in:
Urtzi Alfaro
2025-08-21 20:28:14 +02:00
parent d6fd53e461
commit c6dd6fd1de
85 changed files with 17842 additions and 1828 deletions

View 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'
]