From 2441d8c4a22fa2fa76312a5c8399848ad989dfb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?O=CC=81scar=20M=2E=20Lage?= Date: Sun, 14 Nov 2021 14:55:53 +0100 Subject: [PATCH] Add: Some comments added in the main.rs --- src/main.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 72c5c19..28052dd 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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")