Prot3 documentation says that by default JSON printer should convert the field name to lowerCamelCase and use that as the JSON name, but I did not observe this in my files:
Lng float32 `protobuf:"fixed32,1,opt,name=Lng,proto3" json:"Lng,omitempty"`
Lat float32 `protobuf:"fixed32,2,opt,name=Lat,proto3" json:"Lat,omitempty"`
message Coordinate {
float Lng = 1;
float Lat = 2;
}
Is there an explicit syntax that would do this? I am using protoc-gen-go v1.25.0
and protoc v3.13.0