jumpserver/apps/users/apps.py

12 lines
210 B
Python
Raw Normal View History

2016-08-08 16:43:11 +00:00
from __future__ import unicode_literals
from django.apps import AppConfig
class UsersConfig(AppConfig):
name = 'users'
2016-09-03 11:05:50 +00:00
2018-02-27 04:18:36 +00:00
def ready(self):
from . import signals_handler
super().ready()