awx/awx/ui/apps.py
2023-02-01 14:59:38 -05:00

9 lines
174 B
Python

# Django
from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _
class UIConfig(AppConfig):
name = 'awx.ui'
verbose_name = _('UI')