1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
extern crate failure; extern crate regex; extern crate reqwest; extern crate select; extern crate structopt; #[macro_use] extern crate lazy_static; pub mod options; pub use options::parse_args; pub use options::help; pub mod global; pub use global::PRESENT_DATE; // Build-in text name pub const BUILD_IN_TEXT: &str = "latest.txt";