1
0
mirror of https://github.com/mrusme/neonmodem.git synced 2024-06-30 06:45:24 +00:00
neonmodem/ui/views/views.go
2022-12-28 22:22:36 -05:00

11 lines
150 B
Go

package views
import (
tea "github.com/charmbracelet/bubbletea"
)
type View interface {
View() string
Update(msg tea.Msg) (tea.Model, tea.Cmd)
}