UNPKG

@getsolara/solara.js

Version:

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

4 lines 232 B
module.exports = { name: "$shardCount", description: "Returns the total number of shards for the bot.", takesBrackets: false, execute: async (context, args) => { return context.client.shard?.count?.toString() ?? "1"; } };