indexDB/types.go

16 lines
215 B
Go
Raw Normal View History

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
}