mirror of
https://github.com/mrusme/neonmodem.git
synced 2024-11-03 04:27:16 -05:00
11 lines
150 B
Go
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)
|
|
}
|