diff --git a/README b/README index 3c036d4..0810725 100644 --- a/README +++ b/README @@ -26,7 +26,7 @@ Under Debian Wheezy you can simply run: Yo also need to install go dependences: -# go get labix.org/v2/mgo/bson labix.org/v2/mgo/ code.google.com/p/gorilla/sessions +# go get labix.org/v2/mgo/bson labix.org/v2/mgo/ github.com/gorilla/sessions github.com/gorilla/securecookie == Installation == === For admins ("for developers" below) === diff --git a/session.go b/session.go index c311110..04fe668 100644 --- a/session.go +++ b/session.go @@ -1,8 +1,8 @@ package main import ( - "code.google.com/p/gorilla/securecookie" - "code.google.com/p/gorilla/sessions" + "github.com/gorilla/securecookie" + "github.com/gorilla/sessions" "net/http" )