how to get the url of a message attachment discord js code example
Example: discord.js get attachment url
message.attachments.forEach(attachment => {
const ImageLink = attachment.proxyURL;
message.channel.send(`\`${ImageLink}\``).catch(error)
});