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