@ptkdev/node-discord-bot-boilerplate
Version:
Create your discord bot with this friendly boilerplate. Use this repository as template for your bot
23 lines • 599 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Hello World
* =====================
*
* Print hello-world
*
* @interface [ModuleInterface ModuleResponseInterface](https://github.com/ptkdev-boilerplate/node-discord-bot-boilerplate/blob/main/app/types/module.type.ts)
*
* @param {string} {text} - input string
*
* @return {Promise<ModuleResponseInterface>} (async) app() function that return string
*
*/
const m = async ({ text }) => {
const app = () => text;
return {
app
};
};
exports.default = m;
//# sourceMappingURL=module.js.map