1
0
mirror of https://github.com/mrusme/neonmodem.git synced 2024-07-21 03:14:14 -04:00
neonmodem/ui/windows/windows.go

11 lines
154 B
Go
Raw Normal View History

2023-01-02 13:24:02 -05:00
package windows
import (
tea "github.com/charmbracelet/bubbletea"
)
type Window interface {
View() string
Update(msg tea.Msg) (tea.Model, tea.Cmd)
}