From 6195062482a558c9c4b30febf27090e49f684bd9 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Tue, 3 Mar 2026 10:03:49 -0300 Subject: [PATCH] fix: add missing PathBuf import --- src/core/bot/tool_executor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/bot/tool_executor.rs b/src/core/bot/tool_executor.rs index 32028641b..18319ba4c 100644 --- a/src/core/bot/tool_executor.rs +++ b/src/core/bot/tool_executor.rs @@ -5,7 +5,7 @@ use serde_json::Value; // use std::collections::HashMap; use std::fs::OpenOptions; use std::io::Write; -use std::path::Path; +use std::path::{Path, PathBuf}; use std::sync::Arc; use uuid::Uuid;