summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-28 18:27:38 -0600
committerJeff Carr <[email protected]>2024-11-28 18:27:38 -0600
commitbe0378f5486184b69b5da59461786477d753b8a3 (patch)
treed11001460150ee998feb66a3052d2034f71815d4 /structs.go
parent8bf3997c81db88d8401db28c86f701be014442c2 (diff)
add a test example
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/structs.go b/structs.go
index 2531e96..4817831 100644
--- a/structs.go
+++ b/structs.go
@@ -5,6 +5,7 @@ import (
"go.wit.com/gui"
"go.wit.com/lib/gui/repostatus"
+ "go.wit.com/lib/protobuf/forgepb"
)
var me *RepoList
@@ -21,12 +22,18 @@ func (b *RepoList) Enable() {
type RepoList struct {
sync.RWMutex
+ // the main window and box
+ mainWindow *gui.Node
+ mainbox *gui.Node
+
onlyMe bool
goSrcPwd string
allrepos map[string]*RepoRow
viewName string
cfgfile string
+ forge *forgepb.Forge
+
reposbox *gui.Node
reposgrid *gui.Node
reposgroup *gui.Node