mirror of
https://github.com/openfaas/faasd.git
synced 2025-06-18 03:56:35 +00:00
* Updates containerd to v1.7.0 and new binary for 32-bit Arm OSes. * Updates Go dependencies - openfaas and external Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
17 lines
239 B
Protocol Buffer
Generated
17 lines
239 B
Protocol Buffer
Generated
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;
|
|
}
|