Spaces:
Runtime error
Runtime error
/*╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺ | |
⭐PROJECT NAME: | |
SUBZERO WHATSAPP MD BOT | |
⭐DEVELOPER | |
MR FRANK | |
⭐ MY TEAM | |
XERO CODERS | |
⭐ OUR WEBSITE | |
https://github.com/ZwSyntax/SUBZERO-MD | |
© TRY DECRYPTING IF YOU CAN⚠ | |
╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺*/ | |
const axios = require("axios"); | |
const fs = require("fs"); | |
const FormData = require("form-data"); | |
async function shannzCdn(path) { | |
const form = new FormData(); | |
const fileStream = fs.createReadStream(path); | |
form.append("file", fileStream); | |
try { | |
const response = await axios.post("https://endpoint.web.id/server/upload", form, { | |
headers: { | |
...form.getHeaders(), | |
}, | |
}); | |
return response.data | |
} catch (error) { | |
return error.message | |
} | |
} | |
module.exports = { shannzCdn } | |