2
0
mirror of https://github.com/cderche/greenlock-storage-s3 synced 2025-02-22 14:18:05 +00:00
gl-store-s3.js/lib/certificates.js
2019-05-09 21:20:14 +01:00

19 lines
560 B
JavaScript

module.exports = (options) => {
const handlers = {
check: (opts) => {
return require("./certificates/check").check(opts, options);
},
checkKeypair: (opts) => {
return require("./certificates/checkKeypair").checkKeypair(opts, options);
},
setKeypair: (opts) => {
return require("./certificates/setKeypair").setKeypair(opts, options);
},
set: (opts) => {
return require("./certificates/set").set(opts, options);
}
};
return handlers;
};