mirror of
https://github.com/monitoring-mixins/website.git
synced 2024-12-14 11:37:31 +00:00
12 lines
306 B
Go
12 lines
306 B
Go
|
//+build tools
|
||
|
|
||
|
// Package tools tracks dependencies for tools that used in the build process.
|
||
|
// See https://github.com/golang/go/wiki/Modules
|
||
|
package hack
|
||
|
|
||
|
import (
|
||
|
_ "github.com/brancz/gojsontoyaml"
|
||
|
_ "github.com/google/go-jsonnet/cmd/jsonnet"
|
||
|
_ "github.com/jsonnet-bundler/jsonnet-bundler/cmd/jb"
|
||
|
)
|