mirror of
https://github.com/arthur-pbty/selfbot-discord.git
synced 2026-06-03 15:07:35 +02:00
13 lines
318 B
TypeScript
13 lines
318 B
TypeScript
const { ButtonStyle, ButtonBuilder, ActionRowBuilder } = require('discord.js');
|
|
|
|
module.exports = {
|
|
aliases: ['latence'],
|
|
description: 'Avoir la latence du bot.',
|
|
emote: '⏱️',
|
|
utilisation: '',
|
|
permission: 0,
|
|
|
|
async execute(message: any, args: string[], client: any) {
|
|
message.reply("pong");
|
|
}
|
|
}; |