mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-06-01 03:15:23 +00:00
12 lines
211 B
Python
12 lines
211 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class OpsConfig(AppConfig):
|
|
name = 'ops'
|
|
|
|
def ready(self):
|
|
super().ready()
|
|
from .celery import signal_handler
|