/[sudobot]/trunk/commands/about.js
ViewVC logotype

Contents of /trunk/commands/about.js

Parent Directory Parent Directory | Revision Log Revision Log


Revision 11 - (show annotations)
Mon Jul 29 17:28:13 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: text/javascript
File size: 654 byte(s)
Initial release v1.0.0
1 const MessageEmbed = require('../src/MessageEmbed');
2 const { version } = require('./help');
3
4 module.exports = {
5 async handle(msg) {
6 await msg.reply({
7 embeds: [
8 new MessageEmbed()
9 .setTitle('SudoBot')
10 .setDescription('A free and open source discord moderation bot, specially created for **The Everything Server**.')
11 .addField('Version', version)
12 .addField('Support', '[email protected]')
13 .setFooter({
14 text: 'Copyright © Ar Rakin 2022, all rights reserved'
15 })
16 ]
17 });
18 }
19 };

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26