clap/src/lib.rs
2015-02-26 16:25:40 -05:00

14 lines
172 B
Rust

#![feature(collections, core)]
pub use argmatches::ArgMatches;
pub use arg::Arg;
pub use app::App;
mod app;
mod argmatches;
mod arg;
mod args;
#[test]
fn it_works() {
}