mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 07:46:43 +02:00
11 lines
253 B
JavaScript
11 lines
253 B
JavaScript
const { CommandoClient } = require('discord.js-commando');
|
|
const PokemonStore = require('./PokemonStore');
|
|
|
|
module.exports = class XiaoClient extends CommandoClient {
|
|
constructor(options) {
|
|
super(options);
|
|
|
|
this.pokemon = new PokemonStore();
|
|
}
|
|
};
|