diff options
| author | adamdottv <[email protected]> | 2025-05-29 15:30:39 -0500 |
|---|---|---|
| committer | adamdottv <[email protected]> | 2025-05-29 15:30:39 -0500 |
| commit | 913b3434d8243cc9681a3bf7520e7b027ec3853b (patch) | |
| tree | e1a16ff571053aafec5b0a93f1b7ab85694357f2 /internal/tui/state | |
| parent | 1c01ee48340c524af9223fac43f21d3a545e4583 (diff) | |
| download | opencode-913b3434d8243cc9681a3bf7520e7b027ec3853b.tar.gz opencode-913b3434d8243cc9681a3bf7520e7b027ec3853b.zip | |
wip: refactoring tui
Diffstat (limited to 'internal/tui/state')
| -rw-r--r-- | internal/tui/state/state.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/internal/tui/state/state.go b/internal/tui/state/state.go index d2125b930..33b1cc7f1 100644 --- a/internal/tui/state/state.go +++ b/internal/tui/state/state.go @@ -1,8 +1,10 @@ package state -import "github.com/sst/opencode/internal/session" +import ( + "github.com/sst/opencode/pkg/client" +) -type SessionSelectedMsg = *session.Session +type SessionSelectedMsg = *client.SessionInfo type SessionClearedMsg struct{} type CompactSessionMsg struct{} type StateUpdatedMsg struct { |
