From 8c1ef7f9f616d8d640d06a087ac09c9fabd40ff7 Mon Sep 17 00:00:00 2001 From: donpat1to Date: Mon, 27 Oct 2025 23:07:48 +0100 Subject: [PATCH] removed unused imports --- WatcherAgent/src/api.rs | 1 - WatcherAgent/src/main.rs | 2 -- 2 files changed, 3 deletions(-) diff --git a/WatcherAgent/src/api.rs b/WatcherAgent/src/api.rs index 909f3c5..b19bc46 100644 --- a/WatcherAgent/src/api.rs +++ b/WatcherAgent/src/api.rs @@ -12,7 +12,6 @@ /// These functions are called from the main agent loop and background tasks. All network operations are asynchronous and robust to transient failures. use std::time::Duration; -use crate::docker::container; use crate::docker::serverclientcomm::handle_server_message; use crate::hardware::HardwareInfo; use crate::models::{ diff --git a/WatcherAgent/src/main.rs b/WatcherAgent/src/main.rs index 8a989b6..569c593 100644 --- a/WatcherAgent/src/main.rs +++ b/WatcherAgent/src/main.rs @@ -31,10 +31,8 @@ pub mod hardware; pub mod metrics; pub mod models; -use bollard::Docker; use std::env; use std::error::Error; -use std::sync::Arc; use tokio::task::JoinHandle; /// Awaits a spawned asynchronous task and flattens its nested `Result` type.