14 lines
140 B
Go
14 lines
140 B
Go
|
package filter
|
||
|
|
||
|
type storeLoadedMsg struct {
|
||
|
store []any
|
||
|
}
|
||
|
|
||
|
type resultMsg struct {
|
||
|
result []any
|
||
|
}
|
||
|
|
||
|
type errorMsg struct {
|
||
|
error error
|
||
|
}
|