9 lines
199 B
Python
9 lines
199 B
Python
from django.apps import AppConfig
|
|
|
|
class SheetsConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'sheets'
|
|
|
|
def ready(self):
|
|
import sheets.signals
|