upend/src/config.rs

9 lines
204 B
Rust
Raw Normal View History

2022-10-18 18:10:17 +02:00
#[derive(Clone, Debug)]
pub struct UpEndConfig {
pub vault_name: Option<String>,
pub desktop_enabled: bool,
pub trust_executables: bool,
2022-10-18 18:10:17 +02:00
pub secret: String,
pub key: Option<String>,
}