wormhole/tools/tools.go

10 lines
311 B
Go

// package tool pins a number of Go dependencies that we use. Go builds really fast,
// so wherever we can, we just build from source rather than pulling in third party binaries.
package tools
//noinspection ALL
import (
_ "google.golang.org/protobuf/cmd/protoc-gen-go"
_ "github.com/bufbuild/buf/cmd/buf"
)