Private
Public Access
1
0
Files
Kordophone/kordophoned/src/daemon/mod.rs

9 lines
142 B
Rust
Raw Normal View History

2025-02-11 23:15:24 -08:00
pub struct Daemon {
pub version: String,
}
impl Daemon {
pub fn new() -> Self {
Self { version: "0.1.0".to_string() }
}
}