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