blob: 483e50092ee68f3128cf36e7e31dd3d6e92de9ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
from django.apps import AppConfig
class TwoConfig(AppConfig):
default = True
name = "apps.two_default_configs_app"
class TwoConfigBis(AppConfig):
default = True
name = "apps.two_default_configs_app"
|