UNPKG

@getsolara/solara.js

Version:

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

7 lines 390 B
module.exports = { name: "$applicationCommandCount", description: "Returns the number of registered slash commands.", takesBrackets: false, execute: async (context, args) => { try { const commands = await context.client.application?.commands.fetch(); return commands?.size.toString() ?? "0"; } catch { return "[Error fetching application commands]"; } } };