Adapting project to Vercel

This commit is contained in:
Pablo Ferreiro
2022-06-04 19:41:34 +02:00
parent a66e422060
commit 230906aacf
6 changed files with 15 additions and 6 deletions

9
local.js Normal file
View File

@@ -0,0 +1,9 @@
const Signer = require("./src/Signer")
if (process.argv.length > 2) {
const signer = new Signer()
const url = process.argv[2]
const data = signer.sign(url)
console.log(data)
}