airshipctl/tools/tools.go
Ian Howell 3cda375947 Remove dependency on k8s-code-generator
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
2019-07-01 12:57:29 -05:00

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"
)