diff options
| -rw-r--r-- | interact.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/interact.go b/interact.go index 31e93e6..2ca18b6 100644 --- a/interact.go +++ b/interact.go @@ -30,6 +30,7 @@ func interact() { shell.AddCmd(&ishell.Cmd{ Name: "new", Help: "Start new Project", + LongHelp: "If no Task is currently running a new project will be added to database and activated" Func: func(c *ishell.Context) { //c.Print("\033[H\033[2J") //c.Println(boldGreen("Start New Project")) @@ -42,6 +43,7 @@ func interact() { shell.AddCmd(&ishell.Cmd{ Name: "config", Help: "View and Edit Configuration", + LongHelp: "Contains the location of the database file and the Personal Data needed for billing", Func: func(c *ishell.Context) { //c.Print("\033[H\033[2J") //c.Println(boldGreen("Start New Project")) |
