mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-05-04 22:27:06 +00:00
12 lines
287 B
Python
12 lines
287 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class SettingsConfig(AppConfig):
|
|
name = 'settings'
|
|
verbose_name = _('App Settings')
|
|
|
|
def ready(self):
|
|
from . import signal_handlers # noqa
|
|
from . import tasks # noqa
|