diff options
| -rw-r--r-- | main.go | 5 | ||||
| -rw-r--r-- | scan.go | 2 | ||||
| -rw-r--r-- | structs.go | 2 | ||||
| -rw-r--r-- | unix.go | 2 |
4 files changed, 7 insertions, 4 deletions
@@ -9,7 +9,7 @@ import ( "go.wit.com/gui/gui" "go.wit.com/gui/gadgets" - "go.wit.com/gui/tools/repostatus" + "go.wit.com/gui/lib/repostatus" ) //go:embed plugins/* @@ -205,6 +205,9 @@ func repoworld() { repo.newScan() } }) + buildOptions.NewSeparator("endStatusScans") + buildOptions.NewSeparator("endStatusScans") + buildOptions.NewLabel("cmd") cmds = buildOptions.NewLabel("ls") @@ -4,7 +4,7 @@ package main import ( "go.wit.com/log" - "go.wit.com/gui/tools/repostatus" + "go.wit.com/gui/lib/repostatus" ) func (r *repo) newScan() bool { @@ -4,7 +4,7 @@ package main import ( "go.wit.com/gui/gui" "go.wit.com/gui/gadgets" - "go.wit.com/gui/tools/repostatus" + "go.wit.com/gui/lib/repostatus" ) // the main window nodes @@ -4,7 +4,7 @@ import ( "strings" "go.wit.com/log" - "go.wit.com/gui/tools/repostatus" + "go.wit.com/gui/lib/repostatus" ) var repopath string = "/home/jcarr/" |
