Files
weave-scope/prog/tools.go
Bryan Boreham bcdf2caa61 Make lint happy
Mostly new-style Go build directives

Signed-off-by: Bryan Boreham <bjboreham@gmail.com>
2022-03-14 18:52:10 +00:00

12 lines
250 B
Go

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