mirror of https://github.com/jumpserver/jumpserver
14 lines
317 B
Python
14 lines
317 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class ApplicationsConfig(AppConfig):
|
|
name = 'applications'
|
|
verbose_name = _('Applications')
|
|
|
|
def ready(self):
|
|
from . import signal_handlers
|
|
super().ready()
|