Go-micro框架如何实现GET请求
一、导入相关依赖文件地址:https://github.com/googleapis/googleapis/tree/master/google/api把annotations.proto和http.proto放到proto目录下。二、修改proto文件增加 option (google.api.http) = { get: "/hello"; body: "*"; };三、完整实例syntax
·
一、导入相关依赖文件
地址:https://github.com/googleapis/googleapis/tree/master/google/api
把annotations.proto和http.proto放到proto目录下。
二、修改proto文件
增加 option (google.api.http) = { get: "/hello"; body: "*"; };
三、完整实例
syntax = "proto3";
import "google/api/annotations.proto";
service Greeter {
rpc Hello(Request) returns (Response) {
option (google.api.http) = { get: "/hello"; body: "*"; };
}
}
message Request {
string name = 1;
}
message Response {
string msg = 1;
}
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献1条内容
所有评论(0)