UNPKG

@getsolara/solara.js

Version:

A lightweight and modular Discord bot framework built on discord.js v14, with truly optional feature packages.

8 lines 252 B
module.exports = { name: "$botPing", description: "Returns the bot's websocket heartbeat ping in milliseconds.", takesBrackets: false, execute: async (context, args) => { return context.client.ws.ping.toString(); } };