nestjs-discord-webhook
Version:
webhook to send logs to discord channel based on nestjs-slack-webhook concept
10 lines • 377 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.getDiscordClient = void 0;
const discord_js_1 = require("discord.js");
function getDiscordClient(options) {
const discordClient = new discord_js_1.WebhookClient(options);
return discordClient;
}
exports.getDiscordClient = getDiscordClient;
//# sourceMappingURL=getDiscordClient.js.map
;