我正在使用grpc golang在客户端和服务器应用程序之间进行通信。以下是协议缓冲区的代码。
syntax = "proto3";
package Trail;
service TrailFunc {
rpc HelloWorld (Request) returns (Reply) {}
}
// The request message containing the user's name.
message Request {
map<string,string> inputVar = 1;
}
// The response message containing the greetings
message Reply {
string outputVar = 1;
}
我需要在消息数据结构内部而不是map [string] string创建一个类型为map [string] interface {}的字段inputVar。我该如何实现?提前致谢。