I noticed while importing packages from goji - it is hosted directly off their domain e.g:
package web
import (
"goji.io"
)
func Start() {
mux := goji.NewMux()
}
How are the packages being requested by go and how is it hosted in this way? I can't find any documentation, so I'm thinking it might be a neat trick.