refactor: make unused fields and functions private

Co-authored-by: aider (openai/andrew/openrouter/qwen/qwen3-coder) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-16 12:23:20 -03:00
parent c3f4e03f33
commit 3de5947d42
3 changed files with 5 additions and 5 deletions

View File

@@ -174,8 +174,8 @@ impl FromStr for NumberOrString {
*/
#[derive(Debug, Clone)]
pub struct KeyValue {
pub key: String,
pub value: String,
pub(crate) key: String,
pub(crate) value: String,
}
impl FromStr for KeyValue {