From 0c05b760edb061d51db2236e3dd5c2b1309171a4 Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Thu, 13 Jun 2024 14:37:55 -0700 Subject: [PATCH] Actually commit correct file this time... --- src/daemon/config.rs | 6 ++++-- src/lib.rs | 1 - 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/daemon/config.rs b/src/daemon/config.rs index 92ceeb2..7262282 100644 --- a/src/daemon/config.rs +++ b/src/daemon/config.rs @@ -114,8 +114,10 @@ async fn read_config_directory + Sync + Send>( ); return Ok(builder); } - error!("Error reading config fragment directory {}: {e}", - path.as_ref().to_string_lossy()); + error!( + "Error reading config fragment directory {}: {e}", + path.as_ref().to_string_lossy() + ); return Err(e.into()); } }; diff --git a/src/lib.rs b/src/lib.rs index 0b18f33..1126061 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -27,7 +27,6 @@ pub mod daemon; pub mod hardware; pub mod power; pub mod proxy; -pub mod wakehook; pub mod wifi; #[cfg(test)]