type Options struct {
WorkDir string// Will return importable package under WorkDir. Any vendor dependencies outside the WorkDir will be ignored. NoVendor bool// Will not retrieve vendor dependencies, except inside WorkDir (if specified)}
type Pkg struct {
Dir string// directory containing package sources ImportPath string// import path of package in dir Name string// package name Standard bool// is this package part of the standard Go library?}