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