blob: 33b1cc7f1251c66b9fb0e37b06a4fd2e73786ec0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package state
import (
"github.com/sst/opencode/pkg/client"
)
type SessionSelectedMsg = *client.SessionInfo
type SessionClearedMsg struct{}
type CompactSessionMsg struct{}
type StateUpdatedMsg struct {
State map[string]any
}
|