bpm/test/index.js
2020-02-21 16:43:09 +01:00

6 lines
No EOL
153 B
JavaScript

const got = require("got");
console.log("Trying to make request...");
got("http://google.com").then((r) => {
console.log("Got request working!");
})