use Error;
/** Application exit status type */
pub type ExitStatus = i32;
/** Return type for command functions */
pub type CommandResult = ;
/**
* Function pointer type.
* Represents a function to a subcommand which will return a valid return code, or an error.
*/
pub type CommandFn = fn ;
/**
* Command metadata.
* The name is used to identify the subcommand, and once selected, function will be called.
*/