jumpserver/apps/common/apps.py

14 lines
303 B
Python
Raw Normal View History

2016-09-03 11:05:50 +00:00
from __future__ import unicode_literals
from django.apps import AppConfig
class CommonConfig(AppConfig):
name = 'common'
2018-01-11 12:10:27 +00:00
def ready(self):
from . import signals_handler
from .signals import django_ready
django_ready.send(self.__class__)
return super().ready()