expandschatbot/commands/fun/ping.js
Expand-sys c117c6a55f aaa
2023-01-23 03:06:13 +11:00

7 lines
123 B
JavaScript

module.exports = {
name: 'ping',
description: 'Ping!',
execute(message, args) {
message.channel.send('Pong!');
},
};