diff options
| author | Jeff Carr <[email protected]> | 2024-12-24 04:47:58 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-24 04:47:58 -0600 |
| commit | 6169b19c709f504dfc13f197c636d64b7dd57bfb (patch) | |
| tree | 832b131bbdd620f10445ef25e4dfcede7927bb5c /structs.go | |
initial somethingv0.0.1
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 +} |
