mirror of
https://github.com/jazzband/django-constance.git
synced 2026-03-16 22:40:24 +00:00
12 lines
274 B
Python
12 lines
274 B
Python
from .base import Config
|
|
from django.utils.functional import SimpleLazyObject
|
|
|
|
__version__ = '1.0'
|
|
|
|
|
|
try:
|
|
from django.apps import AppConfig # noqa
|
|
except ImportError:
|
|
config = SimpleLazyObject(Config)
|
|
else:
|
|
default_app_config = 'constance.apps.ConstanceConfig'
|