indexDB/types.go
2026-05-15 21:50:12 +08:00

16 lines
215 B
Go

package indexDB
type Condition struct {
Field string
Operator string
Value any
}
type SearchResult struct {
ID string
Score float32
Content string
Preview string
Metadata map[string]any
}