Get a command by name
(&self, name: &str)
| 107 | |
| 108 | /// Get a command by name |
| 109 | pub fn get(&self, name: &str) -> Option<&Command> { |
| 110 | self.commands.get(name) |
| 111 | } |
| 112 | |
| 113 | /// List all available commands |
| 114 | pub fn list(&self) -> Vec<&Command> { |
no outgoing calls