Fix FutureBox Arc<Mutex> duplicate definitions and cleanup imports

Co-authored-by: moe-charm <217100418+moe-charm@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-08-15 02:24:34 +00:00
parent 4e4fe3b5c9
commit 6128388c19
4 changed files with 4 additions and 133 deletions

View File

@ -8,7 +8,6 @@
use crate::box_trait::{NyashBox, StringBox, BoolBox, BoxCore, BoxBase};
use crate::boxes::map_box::MapBox;
use std::any::Any;
use std::sync::{Arc, Mutex};
#[derive(Debug, Clone)]
pub struct HttpClientBox {

View File

@ -6,7 +6,7 @@ use regex::Regex;
use crate::box_trait::{NyashBox, StringBox, BoolBox, BoxCore, BoxBase};
use crate::boxes::array::ArrayBox;
use std::any::Any;
use std::sync::{Arc, Mutex};
use std::sync::Arc;
use std::fmt::Debug;
#[derive(Debug, Clone)]