Does optional supports in proto3 while working with Go? I tried with this:
protoc person.proto --go_out=. --experimental_allow_proto3_optional
but got this error
person.proto: is a proto3 file that contains optional fields, but code generator protoc-gen-go hasn't been updated to support optional fields in proto3. Please ask the owner of this code generator to support proto3 optional.--go_out:
so proto3 (Go) does not support optional keyword?