mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 14:11:09 -05:00
9 lines
200 B
Python
9 lines
200 B
Python
from django.apps import AppConfig
|
|
|
|
class RidesConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'rides'
|
|
|
|
def ready(self):
|
|
import rides.signals # noqa
|