mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-09-03 16:35:10 +00:00
10 lines
180 B
Python
10 lines
180 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class TicketsConfig(AppConfig):
|
|
name = 'tickets'
|
|
|
|
def ready(self):
|
|
from . import signals_handler
|
|
return super().ready()
|