19 lines
265 B
Go
19 lines
265 B
Go
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
|
|
}
|