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

7 lines
163 B
Rust
Raw Normal View History

2022-05-09 17:52:22 +03:00
use super::types;
use crate::repo::ingredient::IngredientRepo;
pub fn execute(repo: impl IngredientRepo) -> Vec<types::Ingredient> {
repo.get_ingredients()
}