mirror of
https://github.com/ansible/awx.git
synced 2026-01-19 05:31:22 -03:30
8 lines
171 B
Python
8 lines
171 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class MainConfig(AppConfig):
|
|
name = 'awx.main'
|
|
verbose_name = _('Main')
|