17 lines
228 B
Protocol Buffer
17 lines
228 B
Protocol Buffer
|
|
// [START declaration]
|
|
syntax = "proto3";
|
|
package messages.join;
|
|
|
|
import "google/protobuf/timestamp.proto";
|
|
// [END declaration]
|
|
|
|
|
|
// [START messages]
|
|
message Join {
|
|
int32 id = 1;
|
|
int32 port = 2;
|
|
string address = 3;
|
|
}
|
|
|