summaryrefslogtreecommitdiffstats
path: root/src/network_type.rs
diff options
context:
space:
mode:
authorLibravatarLarge Libravatar memdmp <memdmpestrogenzone>2025-05-18 12:53:30 +0200
committerLibravatarLarge Libravatar memdmp <memdmpestrogenzone>2025-05-18 12:53:30 +0200
commit6f23f9fb8cabc53378e512743d11dfca321cf2b5 (patch)
treecee18c752cfd6ab7d7a7f88906eb3dc72df49f0e /src/network_type.rs
parent409dd8b121027c59ed69656172c754700fcfb0df (diff)
downloaddumbswitch-6f23f9fb8cabc53378e512743d11dfca321cf2b5.tar.gz
dumbswitch-6f23f9fb8cabc53378e512743d11dfca321cf2b5.tar.bz2
dumbswitch-6f23f9fb8cabc53378e512743d11dfca321cf2b5.tar.lz
dumbswitch-6f23f9fb8cabc53378e512743d11dfca321cf2b5.zip

feat: final changes

Diffstat (limited to 'src/network_type.rs')
-rw-r--r--src/network_type.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/network_type.rs b/src/network_type.rs
new file mode 100644
index 0000000..8afeabd
--- /dev/null
+++ b/src/network_type.rs
@@ -0,0 +1,7 @@
+#[derive(Clone)]
+pub struct Network {
+ pub ssid: &'static str,
+ pub password: &'static str,
+ pub static_ip: &'static str,
+ pub gateway_ip: &'static str,
+}