1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-19 18:29:23 +00:00
Files
seahub/thirdpart/constance/__init__.py
2019-10-25 15:01:41 +08:00

16 lines
290 B
Python

from django.utils.functional import LazyObject
from . import checks
__version__ = '2.4.0'
default_app_config = 'constance.apps.ConstanceConfig'
class LazyConfig(LazyObject):
def _setup(self):
from .base import Config
self._wrapped = Config()
config = LazyConfig()