From 96ab600a5a574d05428c775f455d9ca2e1dec409 Mon Sep 17 00:00:00 2001 From: Ember Date: Wed, 25 Feb 2026 18:15:50 -0800 Subject: [PATCH] Add missing wifi and firewall module declarations --- daemon/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/daemon/src/lib.rs b/daemon/src/lib.rs index f3d4c77..519c595 100644 --- a/daemon/src/lib.rs +++ b/daemon/src/lib.rs @@ -4,12 +4,14 @@ pub mod config; pub mod diag; pub mod display; pub mod error; +pub mod firewall; pub mod key_input; pub mod notifications; pub mod pcap; pub mod qmdl_store; pub mod server; pub mod stats; +pub mod wifi; #[cfg(feature = "apidocs")] use utoipa::OpenApi;