probo/cmd/rank/message.go

20 lines
262 B
Go
Raw Normal View History

2024-06-05 12:16:08 +02:00
package rank
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
}