mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-08-13 20:06:20 +00:00
10 lines
185 B
Python
10 lines
185 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class NotificationsConfig(AppConfig):
|
|
name = 'notifications'
|
|
|
|
def ready(self):
|
|
from . import signals_handler
|
|
super().ready()
|