blob: 489eb0f88f425b46f557dcb0cea235e29155ace2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
from django.apps import AppConfig
class TwoConfig(AppConfig):
default = True
name = 'apps.two_configs_one_default_app'
class TwoConfigAlt(AppConfig):
name = 'apps.two_configs_one_default_app'
|