From 2f699281c126b530455ab1c7ff0e2ede3960208b Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Wed, 29 Nov 2023 15:34:43 +0100 Subject: [PATCH] fix an unused import warning Signed-off-by: Wolfgang Bumiller --- proxmox-restore-daemon/src/proxmox_restore_daemon/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/proxmox-restore-daemon/src/proxmox_restore_daemon/mod.rs b/proxmox-restore-daemon/src/proxmox_restore_daemon/mod.rs index 570f208d..58e2bb6e 100644 --- a/proxmox-restore-daemon/src/proxmox_restore_daemon/mod.rs +++ b/proxmox-restore-daemon/src/proxmox_restore_daemon/mod.rs @@ -3,7 +3,6 @@ mod api; pub use api::*; pub mod auth; -pub use auth::*; mod watchdog; pub use watchdog::*;