codemp/proto/user.proto

11 lines
212 B
Protocol Buffer
Raw Normal View History

2023-12-18 23:36:15 +01:00
syntax = "proto2";
2023-12-03 19:54:55 +01:00
package user;
2023-12-03 19:54:55 +01:00
// payload identifying user
message UserIdentity {
2023-12-03 19:54:55 +01:00
// user identifier
required bytes id = 1; //since uuid is 8 bytes we prefer to just send the raw bytes instead of string
2023-12-03 19:54:55 +01:00
}