solara-testing-beta
Version:
A modern, customizable, and lightweight Discord framework.
13 lines • 394 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = {
name: 'authorID',
execute: async (ctx) => {
const userId = ctx.interaction?.user.id ?? ctx.message?.author.id;
if (!userId) {
throw new Error('Cannot determine command author ID.');
}
return userId;
},
};
//# sourceMappingURL=authorID.js.map