workgroups/vendor/github.com/kisielk/gotool/go13.go

16 lines
213 B
Go
Raw Permalink Normal View History

2021-09-24 17:34:17 +02:00
// +build !go1.4
package gotool
import (
"go/build"
"path/filepath"
"runtime"
)
var gorootSrc = filepath.Join(runtime.GOROOT(), "src", "pkg")
func shouldIgnoreImport(p *build.Package) bool {
return true
}