11 lines
202 B
Python
11 lines
202 B
Python
"""
|
|
Core app configuration
|
|
"""
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class CoreConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.core'
|
|
verbose_name = 'Core'
|