1
2
3
4
5
6
//! [`Timer`] and [`Stopwatch`] utilities.

mod stopwatch;
mod timer;
pub use stopwatch::*;
pub use timer::*;