File: test.proto

package info (click to toggle)
golang-gogottrpc 1.2.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 432 kB
  • sloc: makefile: 121; sh: 35
file content (16 lines) | stat: -rw-r--r-- 239 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
}