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