how would i get the client from a messagecreate event?
// ./events/logs/messageLog.js
const { getConfig } = require("../../util/configuration");
const embeds = require("../../util/embeds");
const discord = require("discord.js");
module.exports = {
name: "messageCreate",
once: true,
async execute(msg) {
// do something with the client here
},
};
```am trying to have a thing that sends a message in a specific channel when any message is sent (kinda like a logs system)
(using the event handler thing in the guide)