mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-25 02:03:37 -05:00
9 lines
172 B
Python
9 lines
172 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class MainConfig(AppConfig):
|
|
|
|
name = 'awx.main'
|
|
verbose_name = _('Main')
|