mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-22 15:24:48 +01:00
10 lines
134 B
Protocol Buffer
10 lines
134 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package user;
|
|
|
|
|
|
// payload identifying user
|
|
message UserIdentity {
|
|
// user identifier
|
|
required string id = 1;
|
|
}
|