subsonic-tui/internal/tui/views/view.go

11 lines
131 B
Go
Raw Normal View History

package views
import "github.com/rivo/tview"
type ViewEvent string
type View interface {
GetView() tview.Primitive
Update()
}