//! Convenience wrapper to import all the essential structs.
//!
//! ```rust
//! extern crate man;
//!
//! use man::prelude::*;
//!
//! fn main () {
//! let msg = Manual::new("my-app").render();
//! }
//! ```
pub use Arg;
pub use Author;
pub use Env;
pub use Example;
pub use Flag;
pub use Manual;
pub use Opt;
pub use Section;