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