mirror of
https://github.com/jazzband/django-constance.git
synced 2026-04-30 19:54:50 +00:00
10 lines
206 B
Python
10 lines
206 B
Python
from .base import Config
|
|
|
|
__version__ = '1.0a1'
|
|
|
|
try:
|
|
from django.apps import AppConfig # noqa
|
|
except ImportError:
|
|
config = Config()
|
|
else:
|
|
default_app_config = 'constance.apps.ConstanceConfig'
|