recipes/api/src/domain/ingredient/fetch_list.rs

7 lines
163 B
Rust

use super::types;
use crate::repo::ingredient::IngredientRepo;
pub fn execute(repo: impl IngredientRepo) -> Vec<types::Ingredient> {
repo.get_ingredients()
}