This commit is contained in:
Kujtim Hoxha
2025-03-21 18:20:28 +01:00
commit 4b0ea68d7a
28 changed files with 2229 additions and 0 deletions

View File

@@ -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{}
}