diff options
Diffstat (limited to 'src/network_type.rs')
-rw-r--r-- | src/network_type.rs | 7 |
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, +} |