mirror of
https://github.com/clap-rs/clap
synced 2025-01-05 17:28:42 +00:00
17 lines
205 B
Text
17 lines
205 B
Text
#![crate_type= "lib"]
|
|
|
|
#![feature(libc)]
|
|
#![feature(exit_status)]
|
|
|
|
// DOCS
|
|
|
|
pub use args::{Arg, SubCommand, ArgMatches};
|
|
pub use app::App;
|
|
|
|
mod app;
|
|
mod args;
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
}
|