Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | /**
* @copyright nhcarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
import { Client, Events } from "discord.js";
import { translate } from "./modules/translate.js";
import { instantiateServer } from "./server/serve.js";
import { logHandler } from "./utils/logHandler.js";
const client = new Client({
intents: [],
});
client.on(Events.InteractionCreate, (interaction) => {
if (interaction.isMessageContextMenuCommand()) {
void translate(interaction);
}
});
client.on(Events.ClientReady, () => {
logHandler.info("Bot is ready.");
});
instantiateServer();
await client.login(process.env.DISCORD_TOKEN);
|