fix: add services module and fix type annotation error

Co-authored-by: aider (openai/andrew/openrouter/anthropic/claude-sonnet-4) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-25 15:32:26 -03:00
parent a203059bb4
commit 378d42c2af
2 changed files with 2 additions and 1 deletions

View File

@@ -41,7 +41,7 @@ pub fn mode_delete(
CoreError::ItemNotFound(_) => {
warn!("Unable to find item {item_id} in database");
}
_ => return Err(anyhow!(e).context(format!("Failed to delete item {}", item_id))),
_ => return Err(anyhow::Error::from(e).context(format!("Failed to delete item {}", item_id))),
},
}
}