MarginaliaSearch/protocol/def/index.proto
Viktor Lofgren 6b44786649 2022-11 release (#133)
Co-authored-by: vlofgren <vlofgren@gmail.com>
Co-authored-by: vlofgren <vlofgren@marginalia.nu>
Co-authored-by: Viktor Lofgren <vlofgren@marginalia.nu>
Reviewed-on: https://git.marginalia.nu/marginalia/marginalia.nu/pulls/133
2023-01-08 11:13:39 +01:00

23 lines
462 B
Protocol Buffer

syntax = "proto3";
option java_package = "nu.wmsa.wmsa.edge.index.proto";
option java_outer_classname = "IndexProto";
option java_multiple_files = true;
message IndexPutKeywordsReq {
int32 domain = 1;
int32 url = 2;
int32 index = 3;
int64 metadata = 4;
repeated WordSet wordSet = 5;
message WordSet {
int32 index = 1;
repeated string words = 2;
repeated int64 meta = 3;
}
}
message IndexSearchQueryRsp {
}