mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-22 18:11:13 -05:00
12 lines
259 B
Python
12 lines
259 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ReportsConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.reports'
|
|
verbose_name = 'Reports'
|
|
|
|
def ready(self):
|
|
# Import signals here if needed
|
|
pass
|