codemp/proto/user.proto
2023-12-03 19:54:55 +01:00

14 lines
No EOL
146 B
Protocol Buffer

syntax = "proto3";
package user;
// payload identifying user
message UserIdentity {
// user identifier
string id = 1;
}
service User{
}