9 lines
153 B
Python
9 lines
153 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class CookbookConfig(AppConfig):
|
|
name = 'cookbook'
|
|
|
|
def ready(self):
|
|
import cookbook.signals # noqa
|