Files
Aether/_deprecated_py_src/plugins/notification/__init__.py

16 lines
332 B
Python
Raw Normal View History

2025-12-10 20:52:44 +08:00
"""
通知插件
"""
from .base import Notification, NotificationLevel, NotificationPlugin
from .email import EmailNotificationPlugin
from .webhook import WebhookNotificationPlugin
__all__ = [
"NotificationPlugin",
"NotificationLevel",
"Notification",
"WebhookNotificationPlugin",
"EmailNotificationPlugin",
]