@guardbot/builders
v2.1.4
Published
A set of builders that to be used for the bot.
Readme
@guardbot/builders
A set of builders that you can use when creating commands for your bot.

📦 Installation
$ npm install @guardbot/builders # via npm
$ yarn add @guardbot/builders # yarn
$ pnpm add @guardbot/builders # pnpm✨ Features
- Easy to use.
- Beginner friendly.
- Supports Intellisense.
🪴 Usage
const Builders = require('@guardbot/builders');
const Command = Builders.Command({
name: 'ping',
commandType: 'text',
aliases: ['p', 'latency'],
description: 'Shows the latency for the Client.',
executeText(client, message, args) {
// Code Goes Here
}
})
module.exports = Command;