Files
thrilltrack-explorer/django-backend/apps/timeline/apps.py

12 lines
272 B
Python

"""
Timeline app configuration.
"""
from django.apps import AppConfig
class TimelineConfig(AppConfig):
"""Configuration for the timeline app."""
default_auto_field = 'django.db.models.BigAutoField'
name = 'apps.timeline'
verbose_name = 'Timeline Events'