10 lines
213 B
Python
10 lines
213 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class RatingsConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'ratings'
|
|
|
|
def ready(self):
|
|
import ratings.signals # noqa: F401
|