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