codemp/proto/model/user.proto

14 lines
168 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
2023-12-18 23:36:15 +01:00
package codemp.model.user;
2023-12-03 19:54:55 +01:00
// payload identifying user
message UserIdentity {
// user identifier
2023-12-18 23:36:15 +01:00
required string id = 1;
2023-12-03 19:54:55 +01:00
}
service User{
}