graphene-django/examples/cookbook-plain/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'