9 lines
162 B
Go
Executable File
9 lines
162 B
Go
Executable File
package op
|
|
|
|
import "net/http"
|
|
|
|
func (op *OIDCHandler) UserinfoEndpoint(w http.ResponseWriter, req *http.Request) {
|
|
// TODO
|
|
w.WriteHeader(http.StatusNotFound)
|
|
}
|