state.go 227 B

12345678910
  1. package state
  2. import "github.com/sst/opencode/internal/session"
  3. type SessionSelectedMsg = *session.Session
  4. type SessionClearedMsg struct{}
  5. type CompactSessionMsg struct{}
  6. type StateUpdatedMsg struct {
  7. State map[string]any
  8. }