2024-01-18 00:11:03 -06:00
|
|
|
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")
|
2024-01-19 18:12:55 -06:00
|
|
|
|
|
|
|
simpleStdin()
|
2024-01-18 00:11:03 -06:00
|
|
|
}
|
2024-01-18 23:07:56 -06:00
|
|
|
|
2024-01-19 18:12:55 -06:00
|
|
|
// this must be defined for plugin's, but is never run
|
|
|
|
// I assume it's for testing the code in a stand alone way
|
2024-01-18 23:07:56 -06:00
|
|
|
func main() {
|
|
|
|
}
|