mirror of
https://github.com/fawney19/Aether.git
synced 2026-09-02 17:30:23 +08:00
16 lines
332 B
Python
16 lines
332 B
Python
|
|
"""
|
||
|
|
通知插件
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .base import Notification, NotificationLevel, NotificationPlugin
|
||
|
|
from .email import EmailNotificationPlugin
|
||
|
|
from .webhook import WebhookNotificationPlugin
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"NotificationPlugin",
|
||
|
|
"NotificationLevel",
|
||
|
|
"Notification",
|
||
|
|
"WebhookNotificationPlugin",
|
||
|
|
"EmailNotificationPlugin",
|
||
|
|
]
|