9 lines
142 B
Rust
9 lines
142 B
Rust
pub struct Daemon {
|
|
pub version: String,
|
|
}
|
|
|
|
impl Daemon {
|
|
pub fn new() -> Self {
|
|
Self { version: "0.1.0".to_string() }
|
|
}
|
|
} |