1
0
mirror of https://github.com/mrusme/neonmodem.git synced 2024-06-23 06:35:24 +00:00
neonmodem/ui/windows/windows.go

11 lines
154 B
Go
Raw Normal View History

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