Files
weave-scope/prog/tools.go
Bryan Boreham aae86877c7 Add back runsvint dependency
This is a small program used to watch app and probe running inside
the container.  We need to go round a few houses to be able to build
it from vendor directory.
2020-01-14 12:29:31 +00:00

10 lines
205 B
Go

// Ensure go mod fetches files needed to build the Docker container;
// the build constraint ensures this file is ignored
// +build tools
package report
import (
_ "github.com/peterbourgon/runsvinit"
)