1.0.2 • Published 5 years ago

botcord.api v1.0.2

Weekly downloads
1
License
ISC
Repository
-
Last release
5 years ago

BotCord.API

===============

Welcome to the official BotCord API!

Setup

var Discord = require("discord.js")
var Client = new Discord.Client()
var botcordapi = require("botcord.api")
var botcord = new botcordapi(Client)

Client.authKey = "auth_key_here"

Client.on("ready", () => {
    console.log(botcord.postCount())
})

Client.login("token for bot here")