jumpserver/apps/notifications/apps.py

11 lines
221 B
Python

from django.apps import AppConfig
class NotificationsConfig(AppConfig):
name = 'notifications'
def ready(self):
from . import signals_handler
from . import notifications
super().ready()