diff options
| author | Jeff Carr <[email protected]> | 2024-11-28 18:27:38 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-11-28 18:27:38 -0600 |
| commit | be0378f5486184b69b5da59461786477d753b8a3 (patch) | |
| tree | d11001460150ee998feb66a3052d2034f71815d4 /structs.go | |
| parent | 8bf3997c81db88d8401db28c86f701be014442c2 (diff) | |
add a test example
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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 |
