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