shinmentakezo07
Add source files required for Space build
8baf122
Raw
History Blame Contribute Delete
186 Bytes
package vectorstore
import "errors"
var (
ErrNotFound = errors.New("vectorstore: not found")
ErrNotSupported = errors.New("vectorstore: operation not supported on this store")
)