mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-05 22:01:54 +02:00
PokemonStore for a shared pokemon cache
This commit is contained in:
@@ -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();
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user