mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-04-03 15:43:45 +00:00
11 lines
227 B
Go
11 lines
227 B
Go
package state
|
|
|
|
import "github.com/sst/opencode/internal/session"
|
|
|
|
type SessionSelectedMsg = *session.Session
|
|
type SessionClearedMsg struct{}
|
|
type CompactSessionMsg struct{}
|
|
type StateUpdatedMsg struct {
|
|
State map[string]any
|
|
}
|