summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-24 04:47:58 -0600
committerJeff Carr <[email protected]>2024-12-24 04:47:58 -0600
commit6169b19c709f504dfc13f197c636d64b7dd57bfb (patch)
tree832b131bbdd620f10445ef25e4dfcede7927bb5c /structs.go
initial somethingv0.0.1
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go24
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
+}