app.go 151 B

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