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

Annotation of /trunk/commands/about.js

Parent Directory Parent Directory | Revision Log Revision Log


Revision 27 - (hide annotations)
Mon Jul 29 17:28:16 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: text/javascript
File size: 650 byte(s)
Added -send command and added support of attachments in snippets
1 rakin 11 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 rakin 27 .addField('Support', '[email protected]')
13 rakin 11 .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