mobility-accounts/oidc-provider/endpoints_userinfo.go

9 lines
162 B
Go
Raw Permalink Normal View History

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