20 lines
262 B
Go
20 lines
262 B
Go
|
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
|
||
|
}
|