codemp/proto/user.proto

10 lines
212 B
Protocol Buffer

syntax = "proto2";
package user;
// payload identifying user
message UserIdentity {
// user identifier
required bytes id = 1; //since uuid is 8 bytes we prefer to just send the raw bytes instead of string
}