15 lines
269 B
Python
15 lines
269 B
Python
"""
|
|
This module contains the configuration for the 'base' app.
|
|
"""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class BaseConfig(AppConfig):
|
|
"""
|
|
Configuration class for the 'base' app.
|
|
"""
|
|
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "base"
|