move ui.Init() into main, allow any key to exit help dialog

This commit is contained in:
Bradley Cicenas
2017-01-01 22:48:35 +00:00
parent 6e87539b9d
commit e09bcd0272
3 changed files with 7 additions and 7 deletions

View File

@@ -1,15 +1,19 @@
package main
import (
"os"
ui "github.com/gizak/termui"
)
func main() {
if err := ui.Init(); err != nil {
panic(err)
}
defer ui.Close()
g := NewGrid()
for {
exit := Display(g)
if exit {
os.Exit(0)
return
}
}
}