subsonic-tui/internal/tui/views/view.go
Sagi Dayan 26e526f07e
initial commit
Signed-off-by: Sagi Dayan <sagidayan@gmail.com>
2024-02-20 19:10:14 +02:00

11 lines
131 B
Go

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