mirror of
https://github.com/ansible/awx.git
synced 2026-01-20 06:01:25 -03:30
9 lines
174 B
Python
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')
|