mirror of
https://github.com/jazzband/django-constance.git
synced 2026-04-19 22:50:59 +00:00
10 lines
220 B
Python
10 lines
220 B
Python
from django.apps import AppConfig
|
|
from constance.config import Config
|
|
|
|
|
|
class ConstanceConfig(AppConfig):
|
|
name = 'constance'
|
|
verbose_name = 'Constance'
|
|
|
|
def ready(self):
|
|
self.module.config = Config()
|