mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-22 02:51:12 -05:00
12 lines
204 B
Python
12 lines
204 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'
|