1
0
mirror of https://github.com/mrusme/neonmodem.git synced 2024-09-01 04:14:15 -04: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)
}