pub struct Daemon { pub version: String, } impl Daemon { pub fn new() -> Self { Self { version: "0.1.0".to_string() } } }