blob: 5f23297e3aa78688d93014bd141002d92e8a5329 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
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
log.Log(INFO, "Init() END")
}
func main() {
simpleStdin()
}
|