mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-22 01:31:12 -05:00
12 lines
208 B
Python
12 lines
208 B
Python
"""
|
|
Media app configuration.
|
|
"""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class MediaConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.media'
|
|
verbose_name = 'Media'
|