mirror of
https://github.com/Expand-sys/ccashbot
synced 2025-12-16 15:42:13 +11:00
7 lines
123 B
JavaScript
7 lines
123 B
JavaScript
module.exports = {
|
|
name: 'ping',
|
|
description: 'Ping!',
|
|
execute(message, args) {
|
|
message.channel.send('Pong!');
|
|
},
|
|
};
|