mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 12:11:13 -05:00
10 lines
236 B
Python
10 lines
236 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ParksConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "apps.parks"
|
|
|
|
def ready(self):
|
|
import apps.parks.signals # noqa: F401 - Register signals
|