diff options
| author | Jeff Carr <[email protected]> | 2024-01-03 18:38:53 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-03 18:38:53 -0600 |
| commit | 38a4e969beda577f282f98749fbef28e1bf83971 (patch) | |
| tree | 1cb914687430390c2446d08c34b1b458382d5308 /nocui | |
| parent | b54d69717383e6301cb335a3e490e1892399d46b (diff) | |
move widget.go in this archive
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'nocui')
| -rw-r--r-- | nocui/action.go | 2 | ||||
| -rw-r--r-- | nocui/common.go | 2 | ||||
| -rw-r--r-- | nocui/event.go | 2 | ||||
| -rw-r--r-- | nocui/main.go | 2 | ||||
| -rw-r--r-- | nocui/stdin.go | 2 | ||||
| -rw-r--r-- | nocui/widget.go | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/nocui/action.go b/nocui/action.go index 86645cd..b746c25 100644 --- a/nocui/action.go +++ b/nocui/action.go @@ -1,7 +1,7 @@ package main import ( - "go.wit.com/gui/gui/toolkit" + "go.wit.com/gui/toolkits" ) func (n *node) show(b bool) { diff --git a/nocui/common.go b/nocui/common.go index a8d9684..91b34dd 100644 --- a/nocui/common.go +++ b/nocui/common.go @@ -12,7 +12,7 @@ package main */ import ( - "go.wit.com/gui/gui/toolkit" + "go.wit.com/gui/toolkits" ) // this is the channel we send user events like diff --git a/nocui/event.go b/nocui/event.go index 17d262a..103e1b1 100644 --- a/nocui/event.go +++ b/nocui/event.go @@ -1,7 +1,7 @@ package main import ( - "go.wit.com/gui/gui/toolkit" + "go.wit.com/gui/toolkits" ) func (n *node) doWidgetClick() { diff --git a/nocui/main.go b/nocui/main.go index 15f2954..dfaf50c 100644 --- a/nocui/main.go +++ b/nocui/main.go @@ -2,7 +2,7 @@ package main import ( "sync" - "go.wit.com/gui/gui/toolkit" + "go.wit.com/gui/toolkits" ) var muAction sync.Mutex diff --git a/nocui/stdin.go b/nocui/stdin.go index f1c6537..2c16e24 100644 --- a/nocui/stdin.go +++ b/nocui/stdin.go @@ -7,7 +7,7 @@ import ( "strings" "strconv" - "go.wit.com/gui/gui/toolkit" + "go.wit.com/gui/toolkits" ) func simpleStdin() { diff --git a/nocui/widget.go b/nocui/widget.go index cf05a9e..71082a6 100644 --- a/nocui/widget.go +++ b/nocui/widget.go @@ -1,7 +1,7 @@ package main import ( - "go.wit.com/gui/gui/toolkit" + "go.wit.com/gui/toolkits" ) // this is specific to the nocui toolkit |
