commandor 0.1.0

CLI commands manager
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum Error {
    /// When `Manager.execute()` was called with 0 arguments
    TooFewArguments,

    /// When the command wasn't found
    CommandNotFound(String),

    /// When tried to execute a command without required argument
    ArgumentRequired(String)
}