14 lines
197 B
Protocol Buffer
14 lines
197 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
package codec;
|
||
|
option go_package = "decl/internal/codec";
|
||
|
|
||
|
|
||
|
message TestPBUser {
|
||
|
string Name = 1;
|
||
|
string Uid = 2;
|
||
|
string Group = 3;
|
||
|
string Home = 4;
|
||
|
string State = 5;
|
||
|
}
|
||
|
|