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

* perf: 修改结构

---------

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

12 lines
263 B
Python

from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _
class RBACConfig(AppConfig):
name = 'rbac'
verbose_name = _('App RBAC')
def ready(self):
from . import signal_handlers # noqa
super().ready()