mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-11 12:16:58 +03:00
7 lines
158 B
Python
7 lines
158 B
Python
from django.contrib import admin
|
|
|
|
from cookbook.ingredients.models import Category, Ingredient
|
|
|
|
admin.site.register(Ingredient)
|
|
admin.site.register(Category)
|