diff options
| author | Jeff Carr <[email protected]> | 2024-01-18 23:07:56 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-18 23:07:56 -0600 |
| commit | 0d1e4a4cffafa976730c263bfc4f787d862f8661 (patch) | |
| tree | e49d13a4d93cc195757893cb7c79ef4c293cb492 /main.go | |
| parent | 53946ed046708c368f4939b7c8a360d538e1fbb9 (diff) | |
add main() as required by golangv0.0.6
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -19,6 +19,9 @@ func init() { me.myTree.PluginName = "nocui" me.myTree.ActionFromChannel = doAction - go simpleStdin() log.Log(INFO, "Init() END") } + +func main() { + simpleStdin() +} |
