2
0
mirror of https://github.com/cderche/greenlock-challenge-s3 synced 2025-06-06 11:46:32 +00:00

import path

This commit is contained in:
Cyrille 2019-05-08 17:54:34 +01:00
parent 62217bb4ca
commit 7265e5ae2e
2 changed files with 4 additions and 0 deletions

View File

@ -1,3 +1,5 @@
const path = require('path');
module.exports.get = (opts, options, s3) => {
let challengeKey = path.join(options.directory, opts.challenge.token);
console.log('get', challengeKey);

View File

@ -1,3 +1,5 @@
const path = require('path');
module.exports.remove = (opts, options, s3) => {
let challengeKey = path.join(options.directory, opts.challenge.token);
console.log('remove', challengeKey);