From f9dcc59f3c03b9b293f191735e572e4db3aa63b7 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Sun, 4 Jun 2023 14:43:36 +0200 Subject: [PATCH] chore: fix Signed-off-by: kjuulh --- como_infrastructure/src/services/item_service.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/como_infrastructure/src/services/item_service.rs b/como_infrastructure/src/services/item_service.rs index 38e0a7c..a8ebc8b 100644 --- a/como_infrastructure/src/services/item_service.rs +++ b/como_infrastructure/src/services/item_service.rs @@ -211,7 +211,7 @@ impl ItemService for MemoryItemService { todo!() } - async fn update_item(&self, context: &Context, item: UpdateItemDto) -> anyhow::Result { + async fn update_item(&self, _context: &Context, _item: UpdateItemDto) -> anyhow::Result { todo!() } }