Skip to content

Commit

Permalink
add guide command
Browse files Browse the repository at this point in the history
  • Loading branch information
Snazzah committed Jul 22, 2024
1 parent b6848da commit f2bc952
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/commands/canned/guide.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import { DexareClient } from 'dexare';

import { CannedMessage } from '../../util/abstracts';

export default class Guide extends CannedMessage {
content = {
embeds: [
{
title: 'Guide',
url: 'https://craig.chat/docs/#getting-started',
description: 'Guide: https://craig.chat/docs/#getting-started'
}
]
};

constructor(client: DexareClient<any>) {
super(client, {
name: 'guide',
description: 'Links the guide for Craig. (hint: <https://craig.chat/docs/#getting-started>)',
aliases: ['docs']
});

this.filePath = __filename;
}
}

0 comments on commit f2bc952

Please sign in to comment.