Files
weave-scope/report/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

11 lines
218 B
Go

// Ensure go mod fetches files needed at code generation time;
// the build constraint ensures this file is ignored
//go:build tools
// +build tools
package report
import (
_ "github.com/ugorji/go/codec/codecgen"
)