mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-05-31 10:55:03 +00:00
13 lines
262 B
Python
13 lines
262 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class TerminalConfig(AppConfig):
|
|
name = 'terminal'
|
|
|
|
def ready(self):
|
|
from .signals import on_app_ready
|
|
on_app_ready.send(self.__class__)
|
|
super().ready()
|