mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-08-10 02:28:33 +00:00
12 lines
223 B
Python
12 lines
223 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()
|