diff options
| author | Kujtim Hoxha <[email protected]> | 2025-03-23 19:19:08 +0100 |
|---|---|---|
| committer | Kujtim Hoxha <[email protected]> | 2025-03-23 19:19:08 +0100 |
| commit | 8daa6e774a6e02698c90392e7b2008542f789594 (patch) | |
| tree | 8053fc1a4de87fc8dc3fd6e776577b0221c02ac5 /internal/tui/components/repl/threads.go | |
| parent | 796bbf4d66c0fc70e750c7f582019cb9a7298e59 (diff) | |
| download | opencode-8daa6e774a6e02698c90392e7b2008542f789594.tar.gz opencode-8daa6e774a6e02698c90392e7b2008542f789594.zip | |
add initial stuff
Diffstat (limited to 'internal/tui/components/repl/threads.go')
| -rw-r--r-- | internal/tui/components/repl/threads.go | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/internal/tui/components/repl/threads.go b/internal/tui/components/repl/threads.go deleted file mode 100644 index aa2bc080b..000000000 --- a/internal/tui/components/repl/threads.go +++ /dev/null @@ -1,21 +0,0 @@ -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{} -} |
