mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 12:18:45 -05:00
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
|