1
0
mirror of https://github.com/mrusme/neonmodem.git synced 2024-06-16 06:25:23 +00:00

Implemented windows package

This commit is contained in:
マリウス 2023-01-02 13:24:02 -05:00
parent 0847aee30e
commit 94a760a663
No known key found for this signature in database
GPG Key ID: 272ED814BF63261F

10
ui/windows/windows.go Normal file
View File

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