15 lines
192 B
Protocol Buffer
15 lines
192 B
Protocol Buffer
|
|
// [START declaration]
|
|
syntax = "proto3";
|
|
package messages.pong;
|
|
|
|
// import "google/protobuf/timestamp.proto";
|
|
// [END declaration]
|
|
|
|
|
|
// [START messages]
|
|
message Pong {
|
|
uint32 port = 1;
|
|
}
|
|
|