jumpserver/apps/authentication/apps.py

11 lines
189 B
Python

from django.apps import AppConfig
class AuthenticationConfig(AppConfig):
name = 'authentication'
def ready(self):
from . import signals_handlers
super().ready()