Skip to content

Commit

Permalink
gothic: fix link to examples (#546)
Browse files Browse the repository at this point in the history
  • Loading branch information
adam000 committed Mar 24, 2024
1 parent 1a48a9a commit 710927a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gothic/gothic.go
Expand Up @@ -59,7 +59,7 @@ as either "provider" or ":provider".
BeginAuthHandler will redirect the user to the appropriate authentication end-point
for the requested provider.
See https://github.com/markbates/goth/examples/main.go to see this in action.
See https://github.com/markbates/goth/blob/master/examples/main.go to see this in action.
*/
func BeginAuthHandler(res http.ResponseWriter, req *http.Request) {
url, err := GetAuthURL(res, req)
Expand Down Expand Up @@ -156,7 +156,7 @@ process and fetches all the basic information about the user from the provider.
It expects to be able to get the name of the provider from the query parameters
as either "provider" or ":provider".
See https://github.com/markbates/goth/examples/main.go to see this in action.
See https://github.com/markbates/goth/blob/master/examples/main.go to see this in action.
*/
var CompleteUserAuth = func(res http.ResponseWriter, req *http.Request) (goth.User, error) {
if !keySet && defaultStore == Store {
Expand Down

0 comments on commit 710927a

Please sign in to comment.