count_promcula/
lib.rs

1//! expose an `alive_seconds` metric
2
3pub mod cli;
4
5#[cfg(test)]
6mod tests {
7    #[test]
8    fn it_works() {
9        let result = 2 + 2;
10        assert_eq!(result, 4);
11    }
12}