12 lines
188 B
Go
12 lines
188 B
Go
package auth
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
)
|
|
|
|
// this is usually served at /callback
|
|
func OAuthCallback(w http.ResponseWriter, r *http.Request) {
|
|
fmt.Printf("Getting my OAuth callback")
|
|
}
|