Add: Some comments added in the main.rs

main
Óscar M. Lage 2021-11-14 14:55:53 +01:00
parent 8125876634
commit 2441d8c4a2
1 changed files with 3 additions and 1 deletions

View File

@ -18,13 +18,15 @@ fn main() {
}
};
// Start program flow
// Command matcher
match matches.subcommand() {
// gst projects
("projects", Some(_matches)) => {
console::info("List of projects");
cmd::get_projects(&config_file);
}
// gst tasks [--project]
("tasks", Some(matches)) => {
console::info("List of tasks");
let project = matches.value_of("project")