1
0
mirror of https://github.com/mrusme/neonmodem.git synced 2024-06-16 06:25:23 +00:00
neonmodem/ui/windows/windows.go
2023-01-02 13:24:02 -05:00

11 lines
154 B
Go

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