16 lines
215 B
Go
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
|
|
}
|