apps.py 222 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 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()