Make webhook a part of client

This commit is contained in:
Daniel Odendahl Jr
2018-08-29 23:53:42 +00:00
parent b923731f01
commit 42ca43e1ba
4 changed files with 8 additions and 9 deletions
+3
View File
@@ -1,10 +1,13 @@
const { CommandoClient } = require('discord.js-commando');
const { WebhookClient } = require('discord.js');
const PokemonStore = require('./PokemonStore');
const { XIAO_WEBHOOK_ID, XIAO_WEBHOOK_TOKEN } = process.env;
module.exports = class XiaoClient extends CommandoClient {
constructor(options) {
super(options);
this.webhook = new WebhookClient(XIAO_WEBHOOK_ID, XIAO_WEBHOOK_TOKEN, { disableEveryone: true });
this.pokemon = new PokemonStore();
}
};