Version tools per Go convention under tools.go

This commit is contained in:
Radek Simko
2019-10-17 22:17:23 +02:00
parent 64f7f2c052
commit 7860f55e4f
69 changed files with 12505 additions and 49 deletions

9
tools/tools.go Normal file
View File

@@ -0,0 +1,9 @@
// +build tools
package tools
import (
_ "github.com/golang/mock/mockgen"
_ "golang.org/x/tools/cmd/cover"
_ "golang.org/x/tools/cmd/stringer"
)