You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
239 B
Protocol Buffer
17 lines
239 B
Protocol Buffer
2 years ago
|
syntax = "proto3";
|
||
|
|
||
|
package ttrpc;
|
||
|
|
||
|
option go_package = "github.com/containerd/ttrpc/internal";
|
||
|
|
||
|
message TestPayload {
|
||
|
string foo = 1;
|
||
|
int64 deadline = 2;
|
||
|
string metadata = 3;
|
||
|
}
|
||
|
|
||
|
message EchoPayload {
|
||
|
int64 seq = 1;
|
||
|
string msg = 2;
|
||
|
}
|