summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-18 00:11:03 -0600
committerJeff Carr <[email protected]>2024-01-18 00:11:03 -0600
commit66f87e34481df249b238d2b1490b6a0c1a3402e0 (patch)
tree22f4effacd5463609ac4bd82a3d31c2c0cd7527d /main.go
just a "gui" from <STDIN>v0.0.1
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'main.go')
-rw-r--r--main.go24
1 files changed, 24 insertions, 0 deletions
diff --git a/main.go b/main.go
new file mode 100644
index 0000000..4b2b53b
--- /dev/null
+++ b/main.go
@@ -0,0 +1,24 @@
+package main
+
+/*
+ This is reference code for toolkit developers
+
+ The 'nocui' is a bare minimum toolkit. It's all you need
+ to interact with the GUI
+*/
+
+import (
+ "go.wit.com/log"
+ "go.wit.com/toolkits/tree"
+)
+
+func init() {
+ log.Log(INFO, "Init()")
+
+ me.myTree = tree.New()
+ me.myTree.PluginName = "nocui"
+ me.myTree.ActionFromChannel = doAction
+
+ go simpleStdin()
+ log.Log(INFO, "Init() END")
+}