12 lines
183 B
Protocol Buffer
12 lines
183 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package konfa.user.v1;
|
|
|
|
option go_package = "/userv1";
|
|
|
|
// import "google/protobuf/timestamp.proto";
|
|
|
|
message User {
|
|
string id = 1;
|
|
string username = 2;
|
|
}
|