I'm using protobuf (and protoc) for the first time with Go.
message MyProtoStruct {
string description = 1;
}
I'm a little bit confused:
should I use methods to get values (like
MyProtoStruct.GetDescription()
) orshould I use fields directly (like
MyProtoStruct.Description
)?