graphene/examples/cookbook_django/cookbook/recipes/apps.py

8 lines
149 B
Python
Raw Normal View History

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