main() doesn't run as a plugin

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2024-01-19 18:12:55 -06:00
parent 04108de2c5
commit 7e6e20ca81
1 changed files with 5 additions and 2 deletions

View File

@ -20,8 +20,11 @@ func init() {
me.myTree.ActionFromChannel = doAction
log.Log(INFO, "Init() END")
}
func main() {
simpleStdin()
}
// this must be defined for plugin's, but is never run
// I assume it's for testing the code in a stand alone way
func main() {
}