diff options
| author | Nikolaus Gotsche <n@softwarefools.com> | 2018-10-24 13:58:30 +0200 |
|---|---|---|
| committer | Nikolaus Gotsche <n@softwarefools.com> | 2018-10-24 13:58:30 +0200 |
| commit | 261d250f50b17117e99ab8b4b6ac7dfd35371386 (patch) | |
| tree | 5ef9261936af3d87ea0356997863ccf5d1253d84 /interact.go | |
| parent | 3bbc28806f43c323b21d9053a9e25c89614d5f60 (diff) | |
Finished Interface Framing
Diffstat (limited to 'interact.go')
| -rw-r--r-- | interact.go | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/interact.go b/interact.go index 3f3339b..4b54315 100644 --- a/interact.go +++ b/interact.go @@ -45,7 +45,8 @@ func interact() { //c.Print("\033[H\033[2J") //c.Println(boldGreen("Start New Project")) newProject() - showLastProject() + //showLastProject() + stdOut() c.Println(promptcol("______________________")) }, }) @@ -99,7 +100,8 @@ func interact() { LongHelp: ` Usage: status Shows the current Project, its last Tasks and if there is a open Task.`, Func: func(c *ishell.Context) { - stdOut() + //stdOut() + showStatus(true) c.Println(promptcol("______________________")) }, }) @@ -330,7 +332,7 @@ func interact() { argi, err := strconv.Atoi(arg) if err == nil { editCustomer(argi) - allCustomers() + allCustomers(false) //stdOut() } else { c.Println(boldRed(arg, "is not a valid id!")) @@ -418,7 +420,7 @@ func interact() { LongHelp: ` Usage: allcustomers Show all Customers.`, Func: func(c *ishell.Context) { - allCustomers() + allCustomers(false) c.Println(promptcol("______________________")) }, }) |
