state.go 229 B

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