1 // mod argument_parser;
16 use command::{available_commands, Command, help::Help};
17 use configuration::Configuration;
19 fn main() -> Result<()> {
20 let configuration = Configuration::new();
21 let commands = available_commands();
22 let arguments: Vec<String> = args().collect();
24 if let Some(command_name) = arguments.get(1) {
25 if let Some(main_command) = commands.into_iter().find(|c| c.command() == command_name) {
26 let before_commands = main_command.before_dependencies();
27 let after_commands = main_command.after_dependencies();
29 let command_chain: Vec<Box<dyn Command>> = before_commands
31 .chain(once(main_command))
32 .chain(after_commands.into_iter())
35 for command in command_chain {
36 let result = command.execute(arguments.get(2), &configuration, command_name);
37 if let Err(_) = result {
46 Help::new().execute(None, &configuration, &"help".to_string())