mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-21 16:34:33 +00:00
15 lines
236 B
Python
15 lines
236 B
Python
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()
|