jumpserver/apps/notifications/apps.py

10 lines
185 B
Python

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