This question already has an answer here:
The repository at google.golang.org/appengine is outdated( aetest package specifically), the most current version of aetest looks like it's at github.com/golang/appengine
I'm not sure how to propery import the repository code to my local computer because the import paths in the code repository are to an outdated repository.
I attempted:
$ go get github.com/golang/appengine
package github.com/golang/appengine: code in directory /Users/Bryan/work/gocode/src/github.com/golang/appengine expects import "google.golang.org/appengine"
So it looks like the code in the Github repository uses the old import path.
How should I properly import the most current version of golang appengine?
</div>