summaryrefslogtreecommitdiffstats
path: root/src/network_type.rs
blob: 8afeabd3dd8ba4b095f05aa56fc605f14ba07f96 (plain) (blame)
1
2
3
4
5
6
7
#[derive(Clone)]
pub struct Network {
  pub ssid: &'static str,
  pub password: &'static str,
  pub static_ip: &'static str,
  pub gateway_ip: &'static str,
}