We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edf32d2 commit 8c7a2afCopy full SHA for 8c7a2af
1 file changed
src/app/cmds/General/source.js
@@ -0,0 +1,20 @@
1
+module.exports = {
2
+ name: "source",
3
+ description: "A link to the source for the bot!",
4
+ guildOnly: false,
5
+ authorizedGuilds: [],
6
+ hidden: false,
7
+ permissions: ["DEFAULT"],
8
+ cooldown: 2,
9
+ aliases: [],
10
+ syntax: [],
11
+ execute: async(app, message, args) => {
12
+ return app.functions.msgHandler(message, {
13
+ embeds: [{
14
+ title: app.config.system.emotes.information + " Source",
15
+ color: app.config.system.embedColors.green,
16
+ fields: [
17
+ { name: "OwO? Source Code?!?", value: `The source code for TheCodingBot can be found [here](https://tcb.nekos.tech/)!` }
18
+ ]}]
19
+ })
20
+}}
0 commit comments