UNPKG

migros-api-wrapper

Version:

Making the api of migros more accessible to the public.

10 lines (8 loc) 295 B
import { postRecipeSearch } from "./recipe-search"; import { getRecipeProducts } from "./recipe-products"; import { getRecipeDetails } from "./recipe-details"; export const migusto = { recipeSearch: postRecipeSearch, recipeProducts: getRecipeProducts, recipeDetails: getRecipeDetails, };