aboutsummaryrefslogtreecommitdiff
path: root/tools.go
blob: 71313a0dc89b3a247121cc4f0c368877dbb29459 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// This file is never built. It serves to establish dependencies on tools
// used by go generate and build.go. See
// https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module

//go:build tools
// +build tools

package tools

import (
	_ "github.com/calmh/xdr"
	_ "github.com/gogo/protobuf/protoc-gen-gogofast"
	_ "github.com/maxbrunsfeld/counterfeiter/v6"
	_ "golang.org/x/tools/cmd/goimports"
)