1
0
mirror of https://github.com/go-kratos/kratos.git synced 2026-05-22 10:15:24 +02:00
Files
kratos/transport/http/binding/test.proto
T
longxboy 23a7f15541 add form for codec (#1158)
* add form for http codec
2021-07-08 13:05:21 +08:00

16 lines
275 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 [json_name="naming"];
}