diff options
| author | Eric Biggers <ebiggers@google.com> | 2022-04-08 23:16:59 -0700 |
|---|---|---|
| committer | Eric Biggers <ebiggers@google.com> | 2022-04-08 23:38:01 -0700 |
| commit | ca7a84b8aea203025acbda193f78ea98946236b5 (patch) | |
| tree | 2b9e781db960662c570b5b35f840369130fc87a7 /tools.go | |
| parent | a224e769a478cc446c05dbfd5eb7e32d31933172 (diff) | |
Switch to google.golang.org/protobuf/proto
github.com/golang/protobuf/proto has been deprecated in favor of
google.golang.org/protobuf/proto, so migrate to the non-deprecated one.
Diffstat (limited to 'tools.go')
| -rw-r--r-- | tools.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,9 +5,9 @@ package tools import ( _ "github.com/client9/misspell/cmd/misspell" - _ "github.com/golang/protobuf/protoc-gen-go" _ "github.com/wadey/gocovmerge" _ "golang.org/x/lint/golint" _ "golang.org/x/tools/cmd/goimports" + _ "google.golang.org/protobuf/cmd/protoc-gen-go" _ "honnef.co/go/tools/cmd/staticcheck" ) |