From 4b0ea68d7af9a6031a7ffda7ad66e0cb83315750 Mon Sep 17 00:00:00 2001 From: Kujtim Hoxha Date: Fri, 21 Mar 2025 18:20:28 +0100 Subject: initial --- internal/tui/components/repl/threads.go | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 internal/tui/components/repl/threads.go (limited to 'internal/tui/components/repl/threads.go') diff --git a/internal/tui/components/repl/threads.go b/internal/tui/components/repl/threads.go new file mode 100644 index 000000000..aa2bc080b --- /dev/null +++ b/internal/tui/components/repl/threads.go @@ -0,0 +1,21 @@ +package repl + +import tea "github.com/charmbracelet/bubbletea" + +type threadsCmp struct{} + +func (i *threadsCmp) Init() tea.Cmd { + return nil +} + +func (i *threadsCmp) Update(_ tea.Msg) (tea.Model, tea.Cmd) { + return i, nil +} + +func (i *threadsCmp) View() string { + return "Threads" +} + +func NewThreadsCmp() tea.Model { + return &threadsCmp{} +} -- cgit v1.2.3