mirror of
https://github.com/ansible/awx.git
synced 2026-01-12 02:19:58 -03:30
9 lines
173 B
Python
9 lines
173 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class MainConfig(AppConfig):
|
|
|
|
name = 'awx.main'
|
|
verbose_name = _('Main')
|