From 8a655d64a3cfcefa9ed01bb276b06f40ddfd18d1 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 18 Jan 2024 19:00:03 -0600 Subject: [PATCH] fix path changes Signed-off-by: Jeff Carr --- Makefile | 1 + draw.go | 2 +- go.mod | 10 +++++----- go.sum | 16 ++++++++-------- settings.go | 2 +- structs.go | 2 +- 6 files changed, 17 insertions(+), 16 deletions(-) diff --git a/Makefile b/Makefile index 2470179..18e55d2 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,7 @@ all: redomod: rm -f go.* + goimports -w *.go GO111MODULE= go mod init GO111MODULE= go mod tidy diff --git a/draw.go b/draw.go index a2ab2fc..6dc7405 100644 --- a/draw.go +++ b/draw.go @@ -1,7 +1,7 @@ package logsettings import ( - "go.wit.com/gui/gui" + "go.wit.com/gui" "go.wit.com/lib/gadgets" "go.wit.com/log" ) diff --git a/go.mod b/go.mod index 2cd9197..2441508 100644 --- a/go.mod +++ b/go.mod @@ -1,16 +1,16 @@ -module go.wit.com/gui/lib/logsettings +module go.wit.com/lib/gui/logsettings go 1.21.4 require ( - go.wit.com/gui/gadgets v0.12.4 - go.wit.com/gui/gui v0.12.8 - go.wit.com/log v0.5.4 + go.wit.com/gui v0.12.16 + go.wit.com/lib/gadgets v0.12.10 + go.wit.com/log v0.5.5 ) require ( go.wit.com/dev/alexflint/arg v1.4.5 // indirect go.wit.com/dev/alexflint/scalar v1.2.1 // indirect go.wit.com/dev/davecgh/spew v1.1.4 // indirect - go.wit.com/gui/widget v1.1.3 // indirect + go.wit.com/widget v1.1.5 // indirect ) diff --git a/go.sum b/go.sum index 78c39ce..7aaa747 100644 --- a/go.sum +++ b/go.sum @@ -4,11 +4,11 @@ go.wit.com/dev/alexflint/scalar v1.2.1 h1:loXOcbVnd+8YeJRLey+XXidecBiedMDO00zQ26 go.wit.com/dev/alexflint/scalar v1.2.1/go.mod h1:+rYsfxqdI2cwA8kJ7GCMwWbNJvfvWUurOCXLiwdTtSs= go.wit.com/dev/davecgh/spew v1.1.4 h1:C9hj/rjlUpdK+E6aroyLjCbS5MFcyNUOuP1ICLWdNek= go.wit.com/dev/davecgh/spew v1.1.4/go.mod h1:sihvWmnQ/09FWplnEmozt90CCVqBtGuPXM811tgfhFA= -go.wit.com/gui/gadgets v0.12.4 h1:00KBjz+jjyXSeJxq62OWh6d1dKgOBuUUot63cWIP0ts= -go.wit.com/gui/gadgets v0.12.4/go.mod h1:OB7MtEZy/VK2HrU3yiEuzY9n4LjZwO0L06NYUAFybJs= -go.wit.com/gui/gui v0.12.8 h1:YJ7YjdP9+vwWYVvMakaJPPpfPt9g33Iw0xfuwNQZkmA= -go.wit.com/gui/gui v0.12.8/go.mod h1:iALRA0qw7mn82MX21wrU0FOq/vR9l27If7ObNdOSlNE= -go.wit.com/gui/widget v1.1.3 h1:GvLzGSOF9tfmoh6HNbFdN+NSlBo2qeS/Ba2TnQQ1A1U= -go.wit.com/gui/widget v1.1.3/go.mod h1:A6/FaiFQtAHTjgo7c4FrokXe6bXX1Cowo35b2Lgi31E= -go.wit.com/log v0.5.4 h1:vijLRPTUgChb8J5tx/7Uma/lGTUxeSXosFbheAmL914= -go.wit.com/log v0.5.4/go.mod h1:BaJBfHFqcJSJLXGQ9RHi3XVhPgsStxSMZRlaRxW4kAo= +go.wit.com/gui v0.12.16 h1:GBiPiDyzkGCxwNegehHiONmNppaqyFZv7iteLUHJ/Po= +go.wit.com/gui v0.12.16/go.mod h1:27+THr2a84GZ61KKUuN30WYnYoSsBewllUKc+fnWLto= +go.wit.com/lib/gadgets v0.12.10 h1:zYKQurwuwACir6wTmiYgUprh3AvEX/b7SmEEweLaWOY= +go.wit.com/lib/gadgets v0.12.10/go.mod h1:Hb/vSiW22hPJjTVA1mShQ6HuqQ7dHGB95WLEfZlPO3M= +go.wit.com/log v0.5.5 h1:bK3b94uVKgev4jB5wg06FnvCFBEapQICTSH2YW+CWr4= +go.wit.com/log v0.5.5/go.mod h1:BaJBfHFqcJSJLXGQ9RHi3XVhPgsStxSMZRlaRxW4kAo= +go.wit.com/widget v1.1.5 h1:jx5hJ2WLZJnCcvMuaLHegzpNlzwo+0kOkzsRkzRiB30= +go.wit.com/widget v1.1.5/go.mod h1:I8tnD3x3ECbB/CRNnLCdC+uoyk7rK0AEkzK1bQYSqoQ= diff --git a/settings.go b/settings.go index 776bd28..f7af7df 100644 --- a/settings.go +++ b/settings.go @@ -1,7 +1,7 @@ package logsettings import ( - "go.wit.com/gui/gui" + "go.wit.com/gui" "go.wit.com/log" ) diff --git a/structs.go b/structs.go index c06124f..c8323d1 100644 --- a/structs.go +++ b/structs.go @@ -1,7 +1,7 @@ package logsettings import ( - "go.wit.com/gui/gui" + "go.wit.com/gui" "go.wit.com/lib/gadgets" )