From ff0524340d6bf380e0575bb9a04f162da35b0fc6 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Mon, 15 Jan 2024 15:09:47 -0600 Subject: [PATCH] use 'lib' Signed-off-by: Jeff Carr --- main.go | 5 ++++- scan.go | 2 +- structs.go | 2 +- unix.go | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/main.go b/main.go index ec13bd7..5095bcb 100644 --- a/main.go +++ b/main.go @@ -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") diff --git a/scan.go b/scan.go index d31633c..d78561e 100644 --- a/scan.go +++ b/scan.go @@ -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 { diff --git a/structs.go b/structs.go index d4dcc82..b0c7d7d 100644 --- a/structs.go +++ b/structs.go @@ -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 diff --git a/unix.go b/unix.go index 156e764..d881e54 100644 --- a/unix.go +++ b/unix.go @@ -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/"