mirror of
https://github.com/weaveworks/scope.git
synced 2026-05-17 06:37:22 +00:00
11 lines
218 B
Go
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"
|
|
)
|