1
0
mirror of https://github.com/go-kratos/kratos.git synced 2025-01-16 02:47:03 +02:00
kratos/transport/http/binding/test.proto
longxboy 9a3a02fc68
add http client rpc stub (#943)
* add http client
2021-05-24 23:01:26 +08:00

16 lines
254 B
Protocol Buffer

syntax = "proto3";
package binding;
option go_package = "github.com/go-kratos/kratos/transport/binding";
// The request message containing the user's name.
message HelloRequest {
string name = 1;
Sub sub = 2;
}
message Sub{
string name = 1;
}