From 10872a3efe53eb02b20e25aa522f9da23bec9eeb Mon Sep 17 00:00:00 2001 From: Adam Hintz Date: Sun, 24 Mar 2024 09:59:02 -0700 Subject: [PATCH] gothic: fix link to examples --- gothic/gothic.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gothic/gothic.go b/gothic/gothic.go index 3a814d9a6..86adf58e9 100644 --- a/gothic/gothic.go +++ b/gothic/gothic.go @@ -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) @@ -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 {