tools: add tools.go to pin go run apps (#2344)

* tools: add tools.go to pin go run apps

* remove deps-lint
This commit is contained in:
Caleb Doxsey 2021-07-07 17:34:51 -06:00 committed by GitHub
parent e23d42b070
commit 4ecb43454d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 121 additions and 20 deletions

10
tools.go Normal file
View file

@ -0,0 +1,10 @@
//+build tools
package pomerium
import (
_ "github.com/client9/misspell/cmd/misspell"
_ "github.com/golang/mock/mockgen"
_ "github.com/golang/protobuf/protoc-gen-go"
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
)