mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-05-16 12:00:27 +00:00
11 lines
222 B
Python
11 lines
222 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class TerminalConfig(AppConfig):
|
|
name = 'terminal'
|
|
|
|
def ready(self):
|
|
from . import signals_handler
|
|
return super().ready() |