UNPKG

@getsolara/solara.js

Version:

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

8 lines 278 B
module.exports = { name: "$botAvatar", description: "Returns the client user's (the bot's) avatar URL.", takesBrackets: false, execute: async (context, args) => { return context.client.user.displayAvatarURL({ dynamic: true, size: 4096 }); } };