tests and cleanup

This commit is contained in:
Livio Amstutz 2021-10-28 15:21:47 +02:00
parent d0b8dfe340
commit 1d72aff00a
11 changed files with 468 additions and 123 deletions

View file

@ -43,7 +43,8 @@ func Revoke(w http.ResponseWriter, r *http.Request, revoker Revoker) {
RevocationRequestError(w, r, err)
return
}
httphelper.MarshalJSON(w, nil)
var i interface{}
httphelper.MarshalJSON(w, i)
return
}