/[sudobot]/branches/2.x/src/commands/settings/AboutCommand.ts
ViewVC logotype

Annotation of /branches/2.x/src/commands/settings/AboutCommand.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (hide annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 1299 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 rakinar2 577 import { CommandInteraction, GuildMember, Interaction, Message } from 'discord.js';
2     import BaseCommand from '../../utils/structures/BaseCommand';
3     import DiscordClient from '../../client/Client';
4     import CommandOptions from '../../types/CommandOptions';
5     import InteractionOptions from '../../types/InteractionOptions';
6     import MessageEmbed from '../../client/MessageEmbed';
7    
8     export default class AboutCommand extends BaseCommand {
9     supportsInteractions: boolean = true;
10     version: string;
11    
12     constructor() {
13     super('about', 'settings', []);
14     const { version } = require('../../../package.json');
15     this.version = version;
16     }
17    
18     async run(client: DiscordClient, message: Message | CommandInteraction, options: CommandOptions | InteractionOptions) {
19     await message.reply({
20     embeds: [
21     new MessageEmbed()
22     .setTitle('SudoBot')
23     .setDescription('A free and open source discord moderation bot, specially created for **The Everything Server**.')
24     .addField('Version', this.version)
25     .addField('Support', '[email protected]')
26     .setFooter({
27     text: 'Copyright © Ar Rakin 2022, all rights reserved'
28     })
29     ]
30     });
31     }
32     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26