Hi,
Sometimes I just want to inspect third party code for a library, and/or edit it.
I'm looking for a tool that will read all of the dependencies in a go.mod file and then check out all of the right versions of all of the source code into the right places in a $GOPATH. Does that exist?
Failing that, is there a tool that will read a go.mod file and give me version information about each dependency? I see packages.Load, but that doesn't seem super targeted for the use case; if it's the best that exists then I'll probably make it work.
Kevin