Files
xingrin/backend/apps/scan/notifications/__init__.py

13 lines
274 B
Python
Raw Normal View History

2025-12-12 18:04:57 +08:00
"""极简通知系统"""
from .types import NotificationLevel, NotificationCategory
from .models import Notification
from .services import create_notification
__all__ = [
'NotificationLevel',
'NotificationCategory',
'Notification',
'create_notification'
]