Files
mobility-accounts/oidc-provider/endpoints_userinfo.go
2023-04-25 15:14:42 +03:00

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)
}