We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
go: module github.com/golang/protobuf is deprecated: Use the "google.golang.org/protobuf" module instead.
google.golang.org/protobuf
github.com/golang/protobuf
proto.Message
proto.Marshal
proto.Unmarshal
proto.Equal
google.golang.org/protobuf/proto
The text was updated successfully, but these errors were encountered:
adubovikov
No branches or pull requests
Replace all occurrences of github.com/golang/protobuf with google.golang.org/protobuf
Replace the dependency on github.com/golang/protobuf with google.golang.org/protobuf:
The
google.golang.org/protobuf
package has some changes compared togithub.com/golang/protobuf
. For example:proto.Message
is now an interface, not a struct.proto.Marshal
,proto.Unmarshal
, andproto.Equal
are now ingoogle.golang.org/protobuf/proto
.The text was updated successfully, but these errors were encountered: