11 lines
178 B
JavaScript
11 lines
178 B
JavaScript
'use strict';
|
|
|
|
function onCommand(args, context) {
|
|
context.sendMessage(`Pong, @${context.user.username}!`, context.room.id);
|
|
}
|
|
|
|
module.exports = {
|
|
name: 'Ping',
|
|
onCommand,
|
|
};
|