meal_homework/mealapi/schemas/ingredientschema.py
Torma Kristóf caa84189ea
All checks were successful
continuous-integration/drone/push Build is passing
use new api
2022-02-13 20:56:17 +01:00

11 lines
199 B
Python

#!/usr/bin/env python3
from .marshm import ma
from model import Ingredient
class IngredientSchema(ma.SQLAlchemyAutoSchema):
class Meta:
model = Ingredient
load_instance = True