We use genny to generate generic versions of logic for different protobuf objects. When running genny, it automatically replaces the import for github.com/gogo/protobuf/proto for google.golang.org/protobuf (which then breaks things).
Upgrading the imports package to the most recent version fixes the issue.
Could relate to #40 but I haven't investigated the other cases.
We use genny to generate generic versions of logic for different protobuf objects. When running genny, it automatically replaces the import for
github.com/gogo/protobuf/proto
forgoogle.golang.org/protobuf
(which then breaks things).Upgrading the
imports
package to the most recent version fixes the issue.Could relate to #40 but I haven't investigated the other cases.