interface.go

 1package common
 2
 3import (
 4	tea "github.com/charmbracelet/bubbletea/v2"
 5)
 6
 7// Model represents a common interface for UI components.
 8type Model[T any] interface {
 9	Update(msg tea.Msg) (T, tea.Cmd)
10	View() string
11}