aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorGus Power <gus@infinitesidequests.com>2025-06-07 14:55:21 +0100
committerGus Power <gus@infinitesidequests.com>2025-06-07 14:55:21 +0100
commit172f8163139f8112b76d462198a1213a5cb49dde (patch)
tree0a10558a0b2a4ce4e07177bc520b6f6030553763 /src/main.rs
parent3e5aa28345bb009c12b5a55f2e7174957bf4ed9a (diff)
first test of Junie - add network module for detecting available network adapters
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 2843eb3..3db2582 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -12,10 +12,11 @@ mod config;
mod dyndns_service;
mod error;
mod ip_service;
+mod network;
+mod http;
#[cfg(test)]
mod test_macros;
-mod http;
#[derive(Parser, Debug)]
#[command(ignore_errors(true), version, about, long_about = None)]