I'm still struggling to word the question in a way that is quick to understand, so I'll instead document the steps I followed to encounter the issue I am facing.
- I am looking up documentation for the Request struct in net/http package. I do this via
godoc net/http Request
- Now browsing through the documentation, the first field Request struct has is URL which is of type
*url.URL
whose documentation I'd like to lookup. - But godoc shares no details as to which import path it is a part of. I only know that the package name itself is "url" but its canonical import path would be something like "some/path/url" which I would like to know so that I can look it up and figure out the URL field.
What steps do I follow to get to the specific url
package being referenced in the above piece of documentation ?