The core protocol of WoopChain
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
woop/tools/tools.go

19 lines
669 B

// 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"
)