Core client for create-discord-bot.
npm i core-client-node
// src/index.ts
import "dotenv/config";
import path from "path";
import { CoreClient } from "discord-bot-core-client";
const client = new CoreClient({
token: process.env.DISCORD_BOT_TOKEN as string,
});
client.registerBotsIn(path.resolve(__dirname, "bots")).start();