jumpserver/apps/terminal/apps.py

16 lines
404 B
Python
Raw Normal View History

2016-10-15 09:14:56 +00:00
from __future__ import unicode_literals
from django.apps import AppConfig
2023-07-24 06:09:22 +00:00
from django.utils.translation import gettext_lazy as _
2016-10-15 09:14:56 +00:00
2017-12-12 16:34:04 +00:00
class TerminalConfig(AppConfig):
name = 'terminal'
verbose_name = _('App Terminals')
2017-12-12 04:19:45 +00:00
def ready(self):
2023-07-24 06:09:22 +00:00
from . import signal_handlers # noqa
from . import notifications # noqa
from . import tasks # noqa
return super().ready()