mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-20 07:43:35 -05:00
11 lines
177 B
Python
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')
|
|
|