@sphereon/ssi-sdk-ext.kms-azure-rest-client
Version:
Sphereon SSI-SDK plugin for Azure KeyVault Key Management System.
14 lines (13 loc) • 316 B
JavaScript
import { from } from './rxjsStub'
export class PromiseMiddlewareWrapper {
constructor(middleware) {
this.middleware = middleware
}
pre(context) {
return from(this.middleware.pre(context))
}
post(context) {
return from(this.middleware.post(context))
}
}
//# sourceMappingURL=middleware.js.map