From bb4ba20f0d886fcaccff95c9c23f927fb9c458fb Mon Sep 17 00:00:00 2001 From: ju6ge Date: Sun, 10 May 2026 02:22:16 +0200 Subject: [PATCH] feat: create empty network module --- rust/src/main.rs | 1 + rust/src/network.rs | 1 + 2 files changed, 2 insertions(+) create mode 100644 rust/src/network.rs diff --git a/rust/src/main.rs b/rust/src/main.rs index 4cd72a1..ec75d5d 100644 --- a/rust/src/main.rs +++ b/rust/src/main.rs @@ -68,6 +68,7 @@ mod fat_error; mod hal; mod log; mod mqtt; +mod network; mod plant_state; mod tank; mod webserver; diff --git a/rust/src/network.rs b/rust/src/network.rs new file mode 100644 index 0000000..cfcbdf0 --- /dev/null +++ b/rust/src/network.rs @@ -0,0 +1 @@ +// Network stack spawning module