github.com/authzed/spicedb@v1.32.1-0.20240520085336-ebda56537386/tools.go (about) 1 //go:build tools 2 // +build tools 3 4 package tools 5 6 // Most tools are managed in the magefiles module. These tools are just 7 // the ones that can't run from a submodule at the moment. 8 import ( 9 // support running mage with go run mage.go 10 _ "github.com/magefile/mage/mage" 11 // optgen is used directly in go:generate directives. 12 _ "github.com/ecordell/optgen" 13 // golangci-lint always uses the current directory's go.mod. 14 _ "github.com/golangci/golangci-lint/cmd/golangci-lint" 15 // vulncheck always uses the current directory's go.mod. 16 _ "golang.org/x/vuln/cmd/govulncheck" 17 )