mirror of
https://github.com/django/django.git
synced 2024-11-22 03:18:31 +01: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"
|