1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#[cfg(feature = "dialogs")]
/// Dialog boxes to prompt the user for things.
pub mod dialogs;
pub mod parse;
#[cfg(feature = "config")]
mod keybinds;
#[cfg(feature = "config")]
pub use keybinds::KeybindsRaw;
mod run;
#[cfg(feature = "timing")]
/// Functions to format times.
pub mod timing;
pub use run::Run;