jumpserver/apps/perms/apps.py
fit2bot 9968617758
perf: 修改优化结构 (#12554)
* perf: 修改优化结构

* perf: 修改结构

---------

Co-authored-by: ibuler <ibuler@qq.com>
2024-01-17 11:08:39 +08:00

16 lines
393 B
Python

from __future__ import unicode_literals
from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _
class PermsConfig(AppConfig):
name = 'perms'
verbose_name = _('App Permissions')
def ready(self):
from . import signal_handlers # noqa
from . import tasks # noqa
from . import notifications # noqa
super().ready()