1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#[macro_use]
extern crate trackable;

pub use self::error::{Error, ErrorKind};

pub mod config;
pub mod metric;
pub mod optimizer;
pub mod param;
pub mod pubsub;
pub mod study;
pub mod trial;

// commands
pub mod best;
pub mod get;
pub mod init;
pub mod report;
pub mod run;
pub mod studies;
pub mod trials;

mod error;

pub type Result<T, E = Error> = std::result::Result<T, E>;