1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#[macro_use]
extern crate structopt;
extern crate clap_flags;
#[macro_use]
extern crate failure;
extern crate mkdirp;

mod cli;
mod error;
mod templates;

pub use cli::Cli;
pub use error::{Error, ErrorKind, Result};
pub use templates::Templates;