Marvin Preuss
1d4ae27878
All checks were successful
continuous-integration/drone/push Build is passing
16 lines
213 B
Go
16 lines
213 B
Go
// +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
|
|
}
|