mirror of
https://github.com/Hopiu/django.git
synced 2026-04-24 00:34:47 +00:00
11 lines
208 B
Python
11 lines
208 B
Python
|
|
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"
|