django-constance/constance/__init__.py

14 lines
268 B
Python
Raw Normal View History

from django.utils.functional import LazyObject
2010-08-23 11:06:52 +00:00
2015-01-07 08:32:38 +00:00
__version__ = '1.0.1'
2014-11-25 21:22:04 +00:00
default_app_config = 'constance.apps.ConstanceConfig'
class LazyConfig(LazyObject):
def _setup(self):
from .base import Config
self._wrapped = Config()
config = LazyConfig()