clap/src/lib.rs

15 lines
172 B
Rust
Raw Normal View History

2015-02-26 21:25:40 +00:00
#![feature(collections, core)]
2015-02-25 13:37:25 +00:00
pub use argmatches::ArgMatches;
pub use arg::Arg;
pub use app::App;
mod app;
mod argmatches;
mod arg;
mod args;
#[test]
fn it_works() {
}