9 lines
136 B
Go
9 lines
136 B
Go
package auth
|
|
|
|
import "net/http"
|
|
|
|
// this is usually served at /callback
|
|
func OAuthCallback(w http.ResponseWriter, r *http.Request) {
|
|
|
|
}
|