-
Notifications
You must be signed in to change notification settings - Fork 0
ChannelService
github-actions[bot] edited this page Sep 30, 2024
·
10 revisions
service class for channel related methods if you're looking for specific channel types look to the Channel Types Guide |
|
JS | |
const { Client } = require('noscord.js');
const client = new Client();
client.import("channels");
client.on("ready", async () => {
let channel = await channels.get("put your id here");
channel.send("example");
}); |