forked from Galactic/modmail
19 lines
318 B
JavaScript
19 lines
318 B
JavaScript
const Command = require('../Command');
|
|
|
|
class Markread extends Command {
|
|
|
|
constructor (client) {
|
|
super(client, {
|
|
name: 'markread'
|
|
});
|
|
}
|
|
|
|
async execute (message, { args }) {
|
|
|
|
return this.client.modmail.changeReadState(message, args);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = Markread; |