django-notifications/notifications/models/__init__.py

8 lines
185 B
Python

from .base import AbstractNotification, NotificationLevel
from .notification import Notification
__all__ = (
"AbstractNotification",
"Notification",
"NotificationLevel",
)