probo/cmd/filter/message.go
2024-04-24 09:29:01 +02:00

13 lines
140 B
Go

package filter
type storeLoadedMsg struct {
store []any
}
type resultMsg struct {
result []any
}
type errorMsg struct {
error error
}