discord-bot-core-client
v0.0.5
Published
Core client for create-discord-bot.
Downloads
9
Maintainers
Readme
Discord Bot Core Client
Core client for create-discord-bot.
Getting started
npm i discord-bot-core-client
Example
// 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();