mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-04-03 15:43:45 +00:00
13 lines
229 B
Go
13 lines
229 B
Go
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
|
|
}
|