mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-22 08:31:15 -05:00
16 lines
347 B
Python
16 lines
347 B
Python
"""
|
|
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
|