auth
6:3423c552e249 Browse Files
Update package name. We've renamed the package to auth, so we may as well update the package name in all our files.
access.go authorize.go client.go config.go context.go errors.go info.go session.go storage.go util.go
1.1 --- a/access.go Wed Aug 13 05:51:25 2014 -0400 1.2 +++ b/access.go Wed Aug 13 05:53:50 2014 -0400 1.3 @@ -1,4 +1,4 @@ 1.4 -package oauth2 1.5 +package auth 1.6 1.7 import ( 1.8 "net/http"
2.1 --- a/authorize.go Wed Aug 13 05:51:25 2014 -0400 2.2 +++ b/authorize.go Wed Aug 13 05:53:50 2014 -0400 2.3 @@ -1,4 +1,4 @@ 2.4 -package oauth2 2.5 +package auth 2.6 2.7 import ( 2.8 "net/http"
3.1 --- a/client.go Wed Aug 13 05:51:25 2014 -0400 3.2 +++ b/client.go Wed Aug 13 05:53:50 2014 -0400 3.3 @@ -1,4 +1,4 @@ 3.4 -package oauth2 3.5 +package auth 3.6 3.7 import ( 3.8 "secondbit.org/uuid"
4.1 --- a/config.go Wed Aug 13 05:51:25 2014 -0400 4.2 +++ b/config.go Wed Aug 13 05:53:50 2014 -0400 4.3 @@ -1,4 +1,4 @@ 4.4 -package oauth2 4.5 +package auth 4.6 4.7 // AllowedAuthorizeType is a collection of allowed auth request types 4.8 type AllowedAuthorizeType []AuthorizeRequestType
5.1 --- a/context.go Wed Aug 13 05:51:25 2014 -0400 5.2 +++ b/context.go Wed Aug 13 05:53:50 2014 -0400 5.3 @@ -1,4 +1,4 @@ 5.4 -package oauth2 5.5 +package auth 5.6 5.7 import "io" 5.8
6.1 --- a/errors.go Wed Aug 13 05:51:25 2014 -0400 6.2 +++ b/errors.go Wed Aug 13 05:53:50 2014 -0400 6.3 @@ -1,4 +1,4 @@ 6.4 -package oauth2 6.5 +package auth 6.6 6.7 import "errors" 6.8
7.1 --- a/info.go Wed Aug 13 05:51:25 2014 -0400 7.2 +++ b/info.go Wed Aug 13 05:53:50 2014 -0400 7.3 @@ -1,4 +1,4 @@ 7.4 -package oauth2 7.5 +package auth 7.6 7.7 import ( 7.8 "net/http"
8.1 --- a/session.go Wed Aug 13 05:51:25 2014 -0400 8.2 +++ b/session.go Wed Aug 13 05:53:50 2014 -0400 8.3 @@ -1,4 +1,4 @@ 8.4 -package oauth2 8.5 +package auth 8.6 8.7 import "net/http" 8.8