discord-user-bots
Version:
A library that allows you to use the full potential of Discords API to create and operate powerful user bots
25 lines (23 loc) • 659 B
JavaScript
/**
*
* ## OVERVIEW
*
* Contains all the functions/properties any normal user will see
*
* ## WHEN CONTRIBUTING:
*
* Classes are capitalized.
* Properties are lowercase.
* Only include stuff the user would realistically use.
*
*/
module.exports = {
AccountFactory: require("./client/factory.js"),
Client: require("./client/client.js"),
BareClient: require("./client/bare.js"),
CaptchaRequester: require("./client/captcha.js").CaptchaRequester,
Internal: require("./auth/fetch.js"),
Constructs: require("./client/constructs.js"),
version: require("../package.json").version,
...require("./client/def.js"),
};