Files
xingrin/backend/apps/scan/notifications/__init__.py
2025-12-12 18:04:57 +08:00

13 lines
274 B
Python

"""极简通知系统"""
from .types import NotificationLevel, NotificationCategory
from .models import Notification
from .services import create_notification
__all__ = [
'NotificationLevel',
'NotificationCategory',
'Notification',
'create_notification'
]