mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 14:52:33 +00:00
14 lines
172 B
Rust
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() {
|
|
}
|