probo/cmd/session/message.go

20 lines
265 B
Go
Raw Normal View History

2024-04-22 14:24:29 +02:00
package session
import "git.andreafazzi.eu/andrea/probo/pkg/store/file"
type storeLoadedMsg struct {
store *file.SessionFileStore
}
type resultMsg struct {
result []any
}
type errorMsg struct {
error error
}
type scriptExecutedMsg struct {
result string
}