django-constance/constance/__init__.py

13 lines
214 B
Python
Raw Normal View History

from django.utils.functional import LazyObject
2010-08-23 11:06:52 +00:00
2023-06-27 20:53:30 +00:00
__version__ = '3.0.0'
2014-11-25 21:22:04 +00:00
class LazyConfig(LazyObject):
def _setup(self):
from .base import Config
self._wrapped = Config()
2016-09-14 17:22:32 +00:00
config = LazyConfig()