codemp/proto/user.proto

11 lines
133 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
2023-12-18 23:36:15 +01:00
required string id = 1;
2023-12-03 19:54:55 +01:00
}