waycrab/src/state.rs
2023-07-27 15:00:46 -05:00

13 lines
198 B
Rust

#[derive(Debug)]
pub struct Waycrab {
uptime: std::time::Instant,
}
impl Waycrab {
pub fn new() -> Self {
Waycrab {
uptime: std::time::Instant::now(),
}
}
}