mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-26 18:53:35 -05:00
18 lines
366 B
Python
18 lines
366 B
Python
# Django
|
|
from django.apps import AppConfig
|
|
|
|
# from django.core import checks
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class ConfConfig(AppConfig):
|
|
|
|
name = 'awx.conf'
|
|
verbose_name = _('Configuration')
|
|
|
|
def ready(self):
|
|
self.module.autodiscover()
|
|
from .settings import SettingsWrapper
|
|
|
|
SettingsWrapper.initialize()
|