awx/awx/ui/apps.py
2020-11-23 13:22:34 -05:00

11 lines
177 B
Python

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