jumpserver/apps/notifications/apps.py
2021-06-11 18:02:53 +08:00

10 lines
185 B
Python

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