mirror of
https://github.com/yyhuni/xingrin.git
synced 2026-02-08 23:43:11 +08:00
13 lines
274 B
Python
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'
|
||
|
|
]
|