UNPKG

@getsolara/solara.js

Version:

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

10 lines 341 B
module.exports = { name: "$botToken", description: "Returns a redacted bot token string. [OWNER ONLY]", takesBrackets: false, execute: async (context, args) => { const token = context.client.token || process.env.DISCORD_TOKEN; if (token) return token; return "[TOKEN NOT AVAILABLE]"; } };