summaryrefslogtreecommitdiff
path: root/tests/apps/two_default_configs_app/apps.py
blob: 3cbcc411b0f16c953ea645cc0c01759bdd9a51e4 (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'