mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-05-04 14:17:21 +00:00
13 lines
278 B
Python
13 lines
278 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class ApplicationsConfig(AppConfig):
|
|
name = 'applications'
|
|
verbose_name = _('Applications')
|
|
|
|
def ready(self):
|
|
super().ready()
|