Move tools installation to tools.go

This commit is contained in:
Deluan
2020-10-03 11:01:16 -04:00
parent b40df6380e
commit bbd4503ac8
4 changed files with 42 additions and 14 deletions
+12
View File
@@ -0,0 +1,12 @@
// +build tools
package main
import (
_ "github.com/cespare/reflex"
_ "github.com/go-bindata/go-bindata/go-bindata"
_ "github.com/google/wire/cmd/wire"
_ "github.com/onsi/ginkgo/ginkgo"
_ "github.com/pressly/goose/cmd/goose"
_ "golang.org/x/tools/cmd/goimports"
)