mirror of
https://github.com/Hopiu/django.git
synced 2026-03-19 23:40:24 +00:00
10 lines
208 B
Python
10 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"
|