What happened?
my code is
import { Client } from "stoat.js";
let client = new Client();
client.on("ready", async () =>
console.info(`Logged in }!`),
);
client.on("message", async (message) => {
if (message.content === "hello") {
message.channel.sendMessage("world");
}
});
client.loginBot("token redacted")
but my bot doesnt come online
What happened?
my code is
but my bot doesnt come online