summaryrefslogtreecommitdiff
path: root/nocui/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'nocui/main.go')
-rw-r--r--nocui/main.go24
1 files changed, 0 insertions, 24 deletions
diff --git a/nocui/main.go b/nocui/main.go
deleted file mode 100644
index 4b2b53b..0000000
--- a/nocui/main.go
+++ /dev/null
@@ -1,24 +0,0 @@
-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")
-}