mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-22 03:11:12 -05:00
Refactor code structure and remove redundant changes
This commit is contained in:
15
django-backend/apps/entities/apps.py
Normal file
15
django-backend/apps/entities/apps.py
Normal file
@@ -0,0 +1,15 @@
|
||||
"""
|
||||
Entities app configuration.
|
||||
"""
|
||||
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class EntitiesConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'apps.entities'
|
||||
verbose_name = 'Entities'
|
||||
|
||||
def ready(self):
|
||||
"""Import signal handlers when app is ready."""
|
||||
import apps.entities.signals # noqa
|
||||
Reference in New Issue
Block a user