From 94a760a6639d2288f045c1e13ab726934bd095e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=83=9E=E3=83=AA=E3=82=A6=E3=82=B9?= Date: Mon, 2 Jan 2023 13:24:02 -0500 Subject: [PATCH] Implemented windows package --- ui/windows/windows.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 ui/windows/windows.go diff --git a/ui/windows/windows.go b/ui/windows/windows.go new file mode 100644 index 0000000..5c291a8 --- /dev/null +++ b/ui/windows/windows.go @@ -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) +}