diff options
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/pub_ip.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config/pub_ip.rs b/src/config/pub_ip.rs index df27f28..f7539d0 100644 --- a/src/config/pub_ip.rs +++ b/src/config/pub_ip.rs @@ -5,6 +5,7 @@ use std::default::Default; pub struct PubIp { pub icon: String, pub enabled: bool, + pub show6: bool, pub delay: f64, } @@ -13,6 +14,7 @@ impl Default for PubIp { PubIp { icon: String::from(""), enabled: false, + show6: false, delay: 120.0, } } |