mirror of
https://github.com/cderche/greenlock-challenge-s3
synced 2025-06-07 12:16:32 +00:00
import path
This commit is contained in:
parent
62217bb4ca
commit
7265e5ae2e
@ -1,3 +1,5 @@
|
|||||||
|
const path = require('path');
|
||||||
|
|
||||||
module.exports.get = (opts, options, s3) => {
|
module.exports.get = (opts, options, s3) => {
|
||||||
let challengeKey = path.join(options.directory, opts.challenge.token);
|
let challengeKey = path.join(options.directory, opts.challenge.token);
|
||||||
console.log('get', challengeKey);
|
console.log('get', challengeKey);
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
const path = require('path');
|
||||||
|
|
||||||
module.exports.remove = (opts, options, s3) => {
|
module.exports.remove = (opts, options, s3) => {
|
||||||
let challengeKey = path.join(options.directory, opts.challenge.token);
|
let challengeKey = path.join(options.directory, opts.challenge.token);
|
||||||
console.log('remove', challengeKey);
|
console.log('remove', challengeKey);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user