mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-07 22:05:18 +00:00
15 lines
370 B
Go
15 lines
370 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/bufbuild/buf/cmd/buf"
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
_ "github.com/vektra/mockery/v2"
|
|
)
|