mirror of
https://github.com/arthur-pbty/selfbot-discord.git
synced 2026-06-03 15:07:35 +02:00
12 lines
294 B
TypeScript
12 lines
294 B
TypeScript
import { Message, Client } from 'discord.js';
|
|
|
|
module.exports = {
|
|
aliases: ['latence'],
|
|
description: 'Avoir la latence du bot.',
|
|
emote: '⏱️',
|
|
utilisation: '',
|
|
|
|
async execute(message: Message, args: string[], client: Client) {
|
|
message.edit(`Pong! ${client.ws.ping}ms`);
|
|
}
|
|
}; |