summaryrefslogtreecommitdiff
path: root/go-clone-test/structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'go-clone-test/structs.go')
-rw-r--r--go-clone-test/structs.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/go-clone-test/structs.go b/go-clone-test/structs.go
new file mode 100644
index 0000000..edf4a5b
--- /dev/null
+++ b/go-clone-test/structs.go
@@ -0,0 +1,13 @@
+package main
+
+import "go.wit.com/lib/protobuf/forgepb"
+
+var me *testMe
+
+// this app's variables
+type testMe struct {
+ forge *forgepb.Forge
+ startPwd string // pwd when you start
+ testDir1 string
+ testDir2 string
+}