diff options
| author | adamdottv <[email protected]> | 2025-05-14 13:06:09 -0500 |
|---|---|---|
| committer | adamdottv <[email protected]> | 2025-05-14 13:06:09 -0500 |
| commit | 3982be4310aa57209fd4ce2be833c3515f759ba8 (patch) | |
| tree | 1bf577d7185afb153dd1f3e8fd7c4dbe36bb6448 /internal/tui/state | |
| parent | 4c998d4f4ff2d9570796a81a95eb84d34d0a6939 (diff) | |
| download | opencode-3982be4310aa57209fd4ce2be833c3515f759ba8.tar.gz opencode-3982be4310aa57209fd4ce2be833c3515f759ba8.zip | |
feat: session specific logs
Diffstat (limited to 'internal/tui/state')
| -rw-r--r-- | internal/tui/state/state.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/internal/tui/state/state.go b/internal/tui/state/state.go new file mode 100644 index 000000000..83745d6f7 --- /dev/null +++ b/internal/tui/state/state.go @@ -0,0 +1,7 @@ +package state + +import "github.com/sst/opencode/internal/session" + +type SessionSelectedMsg = *session.Session +type SessionClearedMsg struct{} +type CompactSessionMsg struct{} |
