10 lines
131 B
Go
10 lines
131 B
Go
package views
|
|
|
|
import "github.com/rivo/tview"
|
|
|
|
type ViewEvent string
|
|
|
|
type View interface {
|
|
GetView() tview.Primitive
|
|
Update()
|
|
}
|