9 lines
180 B
Python
9 lines
180 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class CoreConfig(AppConfig):
|
|
"""Core app configuration."""
|
|
|
|
default_auto_field: str = "django.db.models.BigAutoField"
|
|
name = "core"
|