graphene-django/examples/cookbook/cookbook/recipes/apps.py
2016-09-17 16:31:17 -07:00

8 lines
149 B
Python

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