codemp/proto/user.proto
zaaarf 94a7786812 feat: workspaces and new library structure
Co-authored-by: alemi <me@alemi.dev>
Co-authored-by: frelodev <frelodev@gmail.com>
2024-01-25 02:13:45 +01:00

10 lines
134 B
Protocol Buffer

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