applause/
lib.rs

1/// Applause - A flexible command line argument parser
2///
3/// Warning: This crate does not yet function.  Work in progress.
4// Need to add logging
5//#[cfg(feature = "log")]
6//use log;
7pub mod documenter;
8pub mod generater;
9pub mod parser;
10
11/// Derive Config on your type to begin.
12pub use applause_derive::Config;
13
14/// This is a dummy placeholder.
15/// This should be replaced with another type.
16#[derive(Default, Config)]
17pub struct ReplaceThisWithYourType {
18    // Config fields would go here
19    _test: String,
20}