Skip to content

Commit

Permalink
Add Store::find_items_by_check_list_id
Browse files Browse the repository at this point in the history
  • Loading branch information
bouzuya committed Nov 25, 2023
1 parent d5b03de commit 0557631
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions rust/crates/web/src/use_case.rs
Expand Up @@ -19,6 +19,10 @@ pub trait Store {
&self,
check_list_id: String,
) -> Result<Vec<model::Check>, Error>;
async fn find_items_by_check_list_id(
&self,
check_list_id: String,
) -> Result<Vec<model::Item>, Error>;
}

pub trait HasStore {
Expand Down

0 comments on commit 0557631

Please sign in to comment.