
This change replaces github.com/gogo/protobuf with google.golang.org/protobuf, except for the code generators. All proto-encoded structs are now generated from .proto files, which include ttrpc.Request and ttrpc.Response. Signed-off-by: Kazuyoshi Kato <katokazu@amazon.com>
12 lines
181 B
Protocol Buffer
12 lines
181 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package ttrpc;
|
|
|
|
option go_package = "github.com/containerd/ttrpc/internal";
|
|
|
|
message TestPayload {
|
|
string foo = 1;
|
|
int64 deadline = 2;
|
|
string metadata = 3;
|
|
}
|