Welcome to crypto-price-history! This plugin is designed to seamlessly integrate with your existing Robo.js project and provide new features and enhancements to your robo. The best part? Everything automatically works once you install this plugin!
👩💻 Are you the plugin developer? Check out the Development Guide for instructions on how to develop, build, and publish this plugin.
To install this plugin, navigate to your Robo project's directory and run the following command:
npm install crypto-price-history
Next, add the plugin to your Robo's configuration file, typically located at .config/robo.mjs
. Add the following lines:
/**
* @type {import('@roboplay/robo.js').Plugin}
**/
const cryptoPriceHistoryPlugin = [
'crypto-price-history',
{
// ... optional customization options
}
]
/**
* @type {import('@roboplay/robo.js').Config}
**/
export default {
// ... rest of your configuration
plugins: [cryptoPriceHistoryPlugin]
}
That's it! Your Robo now has access to the additional features provided by this plugin. The plugin's commands and events are automatically linked, and if your Robo requires any additional bot permissions, they will be inherited when running robo invite
to generate an invite link.
Enjoy your enhanced Robo! 🚀