8 lines
170 B
Python
8 lines
170 B
Python
# -*- coding: utf-8 -*-
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class TestingConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'testing'
|