fix: remove unused delete_item handler and add accessors for unused fields

Co-authored-by: aider (openai/andrew/openrouter/qwen/qwen3-coder) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-16 12:29:32 -03:00
parent 9f5f999989
commit a00952a377
4 changed files with 26 additions and 48 deletions

View File

@@ -190,3 +190,13 @@ impl FromStr for KeyValue {
}
}
}
impl KeyValue {
pub fn key(&self) -> &str {
&self.key
}
pub fn value(&self) -> &str {
&self.value
}
}