1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-22 00:43:28 +00:00
seahub/thirdpart/constance/__init__.py

15 lines
236 B
Python
Raw Normal View History

2019-10-25 07:01:41 +00:00
from django.utils.functional import LazyObject
from . import checks
__version__ = '2.4.0'
class LazyConfig(LazyObject):
def _setup(self):
from .base import Config
self._wrapped = Config()
config = LazyConfig()