@getsolara/solara.js
Version:
A lightweight and modular Discord bot framework built on discord.js v14, with truly optional feature packages.
10 lines • 347 B
JavaScript
module.exports = {
name: "$authorID",
description: "Returns the ID of the command author.",
takesBrackets: false,
execute: async (context, args) => {
const user = context.interaction?.user ?? context.message?.author;
if (!user) return "[Error: Cannot find command author]";
return user.id;
}
};