diff --git a/src/sentry/notifications/models/__init__.py b/src/sentry/notifications/models/__init__.py new file mode 100644 index 0000000000000..a9841c320ebd3 --- /dev/null +++ b/src/sentry/notifications/models/__init__.py @@ -0,0 +1,4 @@ +from sentry.notifications.models.notificationmessage import NotificationMessage +from sentry.notifications.models.notificationsettingbase import NotificationSettingBase + +__all__ = ("NotificationSettingBase", "NotificationMessage")