app.go 152 B

123456789101112
  1. package ui
  2. import (
  3. "github.com/rivo/tview"
  4. )
  5. func NewApp() (app *tview.Application) {
  6. app = tview.NewApplication().
  7. EnableMouse(true)
  8. return
  9. }