blob: aa99a32270bac09afbe4f45e4ec148e9b12628c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// +build go1.4,!go1.6
package gotool
import (
"go/build"
"path/filepath"
"runtime"
)
var gorootSrc = filepath.Join(runtime.GOROOT(), "src")
func shouldIgnoreImport(p *build.Package) bool {
return true
}
|