codemp/proto/user.proto
frelodev 6230371020 feat: fixed proto and tonic includes
Co-authored-by: zaaarf <me@zaaarf.foo>
Co-authored-by: alemi <me@alemi.dev>
2023-12-29 01:06:28 +01:00

10 lines
133 B
Protocol Buffer

syntax = "proto2";
package user;
// payload identifying user
message UserIdentity{
// user identifier
required string id = 1;
}