1
0
mirror of https://github.com/jumpserver/jumpserver.git synced 2025-05-04 14:17:21 +00:00
jumpserver/apps/applications/apps.py
2023-07-24 11:52:25 +08:00

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()