You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
488 B
15 lines
488 B
//+build tools
|
|
|
|
// Package tools tracks dependencies for tools that used in the build process.
|
|
// See https://github.com/golang/go/wiki/Modules
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/brancz/gojsontoyaml"
|
|
_ "github.com/campoy/embedmd"
|
|
_ "github.com/google/go-jsonnet/cmd/jsonnet"
|
|
_ "github.com/google/go-jsonnet/cmd/jsonnet-lint"
|
|
_ "github.com/google/go-jsonnet/cmd/jsonnetfmt"
|
|
_ "github.com/yannh/kubeconform/cmd/kubeconform"
|
|
_ "github.com/jsonnet-bundler/jsonnet-bundler/cmd/jb"
|
|
)
|
|
|