use 'lib'

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2024-01-15 15:09:47 -06:00
parent 8ddc35e198
commit ff0524340d
4 changed files with 7 additions and 4 deletions

View File

@ -9,7 +9,7 @@ import (
"go.wit.com/gui/gui" "go.wit.com/gui/gui"
"go.wit.com/gui/gadgets" "go.wit.com/gui/gadgets"
"go.wit.com/gui/tools/repostatus" "go.wit.com/gui/lib/repostatus"
) )
//go:embed plugins/* //go:embed plugins/*
@ -205,6 +205,9 @@ func repoworld() {
repo.newScan() repo.newScan()
} }
}) })
buildOptions.NewSeparator("endStatusScans")
buildOptions.NewSeparator("endStatusScans")
buildOptions.NewLabel("cmd") buildOptions.NewLabel("cmd")
cmds = buildOptions.NewLabel("ls") cmds = buildOptions.NewLabel("ls")

View File

@ -4,7 +4,7 @@ package main
import ( import (
"go.wit.com/log" "go.wit.com/log"
"go.wit.com/gui/tools/repostatus" "go.wit.com/gui/lib/repostatus"
) )
func (r *repo) newScan() bool { func (r *repo) newScan() bool {

View File

@ -4,7 +4,7 @@ package main
import ( import (
"go.wit.com/gui/gui" "go.wit.com/gui/gui"
"go.wit.com/gui/gadgets" "go.wit.com/gui/gadgets"
"go.wit.com/gui/tools/repostatus" "go.wit.com/gui/lib/repostatus"
) )
// the main window nodes // the main window nodes

View File

@ -4,7 +4,7 @@ import (
"strings" "strings"
"go.wit.com/log" "go.wit.com/log"
"go.wit.com/gui/tools/repostatus" "go.wit.com/gui/lib/repostatus"
) )
var repopath string = "/home/jcarr/" var repopath string = "/home/jcarr/"