eris-msgs-backup
v0.2.2
Published
Forward your server messages to another server, with webhooks!
Downloads
19
Maintainers
Readme
Eris Messages Backup
Forward your server messages to another server, with webhooks!
Installing
npm install eris-msgs-backup
Example
const Eris = require("eris");
const bot = new Eris("BOT_TOKEN");
const Backup = require("eris-msgs-backup");
bot.on("ready", () => {
Backup(bot, "myServerID", "backupServerID", {
embeds: true,
files: true,
deleteWebhook: true
});
});
bot.connect();