syntax = "proto3"; service ProductSearch { rpc GetProduct (ProductRequest) returns (ProductReply); } message ProductRequest { string query = 1; } message ProductReply { string id = 1; string name = 2; double price = 3; }