mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 12:59:23 +08:00
d023c1afba
Signed-off-by: dragondriver <jiquan.long@zilliz.com>
24 lines
407 B
Protocol Buffer
24 lines
407 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package milvus.proto.indexcgo;
|
|
option go_package="github.com/zilliztech/milvus-distributed/internal/proto/indexcgopb";
|
|
|
|
import "common.proto";
|
|
|
|
message TypeParams {
|
|
repeated common.KeyValuePair params = 1;
|
|
}
|
|
|
|
message IndexParams {
|
|
repeated common.KeyValuePair params = 1;
|
|
}
|
|
|
|
message Binary {
|
|
string key = 1;
|
|
bytes value = 2;
|
|
}
|
|
|
|
message BinarySet {
|
|
repeated Binary datas = 1;
|
|
}
|