From 3a450ed768acfad7023ad76b2687ac142e508b20 Mon Sep 17 00:00:00 2001 From: Gulshan Yadav Date: Mon, 26 Jan 2026 21:58:06 +0530 Subject: [PATCH] fix: remove unused import in storage-node binary --- crates/synor-storage/src/bin/storage-node.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/synor-storage/src/bin/storage-node.rs b/crates/synor-storage/src/bin/storage-node.rs index d865baf..540e86a 100644 --- a/crates/synor-storage/src/bin/storage-node.rs +++ b/crates/synor-storage/src/bin/storage-node.rs @@ -7,7 +7,6 @@ //! synor-storage-node --data-dir ./storage-data use synor_storage::{NodeConfig, StorageNode, GatewayConfig, Gateway}; -use std::path::PathBuf; #[tokio::main] async fn main() -> Result<(), Box> {