mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-15 22:27:10 +03:00
8 lines
165 B
Python
8 lines
165 B
Python
|
from django.apps import AppConfig
|
||
|
|
||
|
|
||
|
class IngredientsConfig(AppConfig):
|
||
|
name = 'cookbook.ingredients'
|
||
|
label = 'ingredients'
|
||
|
verbose_name = 'Ingredients'
|