django-notifications/notifications/models/__init__.py

8 lines
135 B
Python
Raw Normal View History

2023-07-07 00:54:47 +00:00
from .base import NotificationLevel
from .notification import Notification
__all__ = [
"Notification",
"NotificationLevel",
]