0.0.5 • Published 3 years ago

discord-bot-core-client v0.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Discord Bot Core Client

Discord Twitter Follow

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();