1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#[macro_use]
extern crate clap;
extern crate regex;
#[macro_use]
extern crate climer_derive;

mod settings;
#[macro_use]
pub mod macros;
pub mod cli;
pub mod error;
pub mod helpers;
pub mod time;
pub mod timer;

pub mod prelude {
    pub use super::error::{ClimerError, ClimerResult};
    pub use super::timer::output::Output;
    pub use super::timer::{Timer, TimerBuilder};
}