9 lines
No EOL
185 B
JavaScript
9 lines
No EOL
185 B
JavaScript
module.exports = {
|
|
api: {
|
|
name: "ping",
|
|
description: "Simple command to show latency"
|
|
},
|
|
run: (int, client, index) => {
|
|
int.reply("My ping is: " + client.ws.ping + " ms");
|
|
}
|
|
} |