django-notifications/notifications/models/__init__.py
2023-07-07 00:54:47 +00:00

7 lines
135 B
Python

from .base import NotificationLevel
from .notification import Notification
__all__ = [
"Notification",
"NotificationLevel",
]