graphene/graphene-django/examples/cookbook_django/cookbook/recipes/apps.py
2016-06-10 10:18:22 -07:00

8 lines
149 B
Python

from django.apps import AppConfig
class RecipesConfig(AppConfig):
name = 'cookbook.recipes'
label = 'recipes'
verbose_name = 'Recipes'