10 lines
217 B
Python
10 lines
217 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class DemonstrationConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'demonstration'
|
|
|
|
|
|
default_app_config = "demonstration.DemonstrationConfig"
|