modmail/structure/commands/Markread.js

19 lines
293 B
JavaScript
Raw Normal View History

2021-06-19 15:06:20 +02:00
const Command = require('../Command');
class Markread extends Command {
constructor(client) {
super(client, {
name: 'markread'
});
}
2021-06-19 22:41:51 +02:00
async execute(message) {
2021-06-19 15:06:20 +02:00
return this.client.modmail.markread(message);
}
}
module.exports = Markread;