mirror of
https://github.com/jazzband/django-constance.git
synced 2026-03-16 22:40:24 +00:00
11 lines
192 B
Python
11 lines
192 B
Python
from django.utils.functional import LazyObject
|
|
|
|
|
|
class LazyConfig(LazyObject):
|
|
def _setup(self):
|
|
from .base import Config
|
|
|
|
self._wrapped = Config()
|
|
|
|
|
|
config = LazyConfig()
|