diff options
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/structs.go b/structs.go new file mode 100644 index 0000000..7ab78ee --- /dev/null +++ b/structs.go @@ -0,0 +1,24 @@ +package main + +import ( + "go.wit.com/gui" + "go.wit.com/lib/protobuf/forgepb" +) + +var me *autoType + +// this app's variables +type autoType struct { + // allrepos map[string]*repo + myGui *gui.Node + + // the window from the /lib/gui/gowit package + // lw *gadgets.BasicWindow + + // our view of the repositories + // repos *repoWindow + // repoList *repolist.RepoList + + // your customized repo preferences and settings + forge *forgepb.Forge +} |
