3cda375947
The deletions from the go.mod in this change were a relic of an earlier change, where the k8s-code-generator was being used to generated client code for Argo workflows. Now that Argo has been properly integrated into the project, this is no longer needed. These deletions were caught by a `go mod tidy` Change-Id: I3e9f115dc31ef30dee59ddeeee513282bc555fcf
9 lines
173 B
Go
9 lines
173 B
Go
// +build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
// These imports are all tools used in the building and testing process
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
)
|