From e64288f310e6ca99b55d284ef09f1f849acbdd95 Mon Sep 17 00:00:00 2001 From: Steve Phillips Date: Tue, 9 Oct 2012 13:05:58 -0700 Subject: [PATCH] Fixed typo (auth.go -> go.auth) Thanks for open sourcing this. Looks like a useful competitor to [pat](https://github.com/bmizerany/pat). --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e2e1101..9c1eff7 100644 --- a/README.md +++ b/README.md @@ -101,7 +101,7 @@ If you plan to use the same `AuthHandler` to secure all of your routes, you may mux.Get("/:param", handler).Secure() ### OAuth2 -In the above examples, we implemented our own custom `AuthHandler`. Check out the [auth.go](https://github.com/bradrydzewski/auth.go) API which provides custom AuthHandlers for OAuth2 providers such as Google and Github. +In the above examples, we implemented our own custom `AuthHandler`. Check out the [go.auth](https://github.com/bradrydzewski/go.auth) API which provides custom AuthHandlers for OAuth2 providers such as Google and Github. ## Logging Logging is enabled by default, but can be disabled: