mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-22 07:14:50 +01:00
added user proto
This commit is contained in:
parent
07c0acd85b
commit
98bab88e01
1 changed files with 14 additions and 0 deletions
14
proto/user.proto
Normal file
14
proto/user.proto
Normal file
|
@ -0,0 +1,14 @@
|
|||
syntax = "proto3";
|
||||
|
||||
package user;
|
||||
|
||||
|
||||
// payload identifying user
|
||||
message UserIdentity {
|
||||
// user identifier
|
||||
string id = 1;
|
||||
}
|
||||
|
||||
service User{
|
||||
|
||||
}
|
Loading…
Reference in a new issue