Files
tendermint/tools/tools.go
William Banfield 9481aac897 gofmt
2022-03-04 17:20:37 -05:00

14 lines
333 B
Go

//go:build tools
// +build tools
// This file uses the recommended method for tracking developer tools in a go module.
//
// https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
package tools
import (
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
_ "github.com/vektra/mockery/v2"
)