UNPKG

@getsolara/solara.js

Version:

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

4 lines 234 B
module.exports = { name: "$botUsersCount", description: "Returns the total number of users the bot can see.", takesBrackets: false, execute: async (context, args) => { return context.client.users.cache.size.toString(); } };