Files
komp_ac/common/proto/search.proto
2025-06-08 16:25:56 +02:00

21 lines
387 B
Protocol Buffer

// In common/proto/search.proto
syntax = "proto3";
package multieko2.search;
service Searcher {
rpc SearchTable(SearchRequest) returns (SearchResponse);
}
message SearchRequest {
string table_name = 1;
string query = 2;
}
message SearchResponse {
message Hit {
int64 id = 1; // The PostgreSQL row ID
float score = 2;
}
repeated Hit hits = 1;
}