app.go 139 B

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