// Do not remove the following build tag line: It exempts this file from normal // builds, which would fail because the imports are programs – package main – // and not really importable packages. // // +build tools // Package tools provides build tools necessary for Harmony. package tools // Put only installable tools into this list. // scripts/install_build_tools.sh parses these imports to install them. import ( _ "github.com/golang/mock/mockgen" _ "github.com/golang/protobuf/protoc-gen-go" _ "github.com/golangci/golangci-lint/cmd/golangci-lint" _ "github.com/harmony-ek/gencodec" _ "golang.org/x/lint/golint" _ "golang.org/x/tools/cmd/goimports" )