blob: 2dd9b3fdf0a905f89829482dafeff2cd93eb3c15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// +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
}
|