Commit ffa35b9f authored by Ali Saeed's avatar Ali Saeed

Create Proto File

parent 58cc723c
syntax = "proto3";
option java_multiple_files = true;
option java_package = "Registration_Discovery";
message SearchResult {
map<string, double> results = 1;
}
message SearchRequest {
string query = 1;
}
message SearchResponse {
SearchResult searchResult = 1;
}
service SearchService {
rpc Search(SearchRequest) returns (SearchResponse);
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment