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