galactic-bot/structure/client/components/observers/Autorole.js
2020-04-17 23:18:52 +03:00

29 lines
429 B
JavaScript

const { Observer } = require('../../../interfaces/');
class Autorole extends Observer {
constructor(client) {
super(client, {
name: 'autorole',
priority: 3,
guarded: true
});
this.client = client;
this.hooks = [
['guildMemberAdd', this.onJoin.bind(this)]
];
}
async onJoin(member) {
}
}
module.exports = Autorole;