mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-22 23:34:49 +01:00
14 lines
146 B
Protocol Buffer
14 lines
146 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package user;
|
||
|
|
||
|
|
||
|
// payload identifying user
|
||
|
message UserIdentity {
|
||
|
// user identifier
|
||
|
string id = 1;
|
||
|
}
|
||
|
|
||
|
service User{
|
||
|
|
||
|
}
|