2019-01-23 21:49:10 +09:00

25 lines
448 B
TypeScript

import autobind from 'autobind-decorator';
import Module from '../../module';
import Message from '../../message';
export default class extends Module {
public readonly name = 'ping';
@autobind
public install() {
return {
mentionHook: this.mentionHook
};
}
@autobind
private async mentionHook(msg: Message) {
if (msg.text && msg.text.includes('ping')) {
msg.reply('PONG!');
return true;
} else {
return false;
}
}
}