message.go 140 B

12345678910111213
  1. package filter
  2. type storeLoadedMsg struct {
  3. store []any
  4. }
  5. type resultMsg struct {
  6. result []any
  7. }
  8. type errorMsg struct {
  9. error error
  10. }