More changes

This commit is contained in:
kdeng00
2024-04-08 16:46:53 -04:00
parent 8551f4a6c4
commit ce0ec470ec
8 changed files with 31 additions and 28 deletions
+8 -5
View File
@@ -1,5 +1,8 @@
mod managers;
mod models;
mod utilities;
mod parsers;
mod syncers;
use std::env;
use std::process;
@@ -75,12 +78,12 @@ fn main() {
chosen_act.print_action_and_flags();
let cmt_mgr = managers::commit_manager::CommitManager {
action: String::from(""),
flags: Vec::new(),
params: Vec::new(),
param_count: 1,
// action: String::from(""),
// flags: Vec::new(),
// params: Vec::new(),
// param_count: 1,
ica_action: chosen_act,
};
// cmt_mgr.commit_action();
cmt_mgr.commit_action();
}