Available Channel Things:
Attachment
Code:
import client from "../..";
import { Event } from "../../structures/lib/Event";
export default new Event({
name: "ready",
once: true,
async run() {
const channel = await client.channels.fetch(client.config.ntx.welcome);
channel.send("Name")
},
});