How should I use vendor in Go 1.6?
With Go1.6, vendoring is built in as you read. What does this mean? Only one thing to keep in mind: When using the go tools such as go build or go run, they first check to see if the dependencies are located in ./vendor/. If so, use it. If not, revert to the $GOPATH/src/ directory. … Read more