PokemonStore for a shared pokemon cache

This commit is contained in:
Daniel Odendahl Jr
2018-08-29 20:49:23 +00:00
parent dbcb80a7b5
commit 632cea6ec5
6 changed files with 80 additions and 69 deletions
+10
View File
@@ -0,0 +1,10 @@
const { CommandoClient } = require('discord.js-commando');
const PokemonStore = require('./PokemonStore');
module.exports = class XiaoClient extends CommandoClient {
constructor(options) {
super(options);
this.pokemon = new PokemonStore();
}
};