mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-04-29 11:54:49 +00:00
8 lines
171 B
Python
8 lines
171 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class AclsConfig(AppConfig):
|
|
name = 'acls'
|
|
verbose_name = _('App Acls')
|