From 604e689928bcdeec02f8d4c892431baf260080c8 Mon Sep 17 00:00:00 2001
From: Supositware <loic.bersier1@gmail.com>
Date: Wed, 2 Jan 2019 18:59:16 +0100
Subject: [PATCH] added credit

---
 commands/utility/credit.js | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
 create mode 100644 commands/utility/credit.js

diff --git a/commands/utility/credit.js b/commands/utility/credit.js
new file mode 100644
index 00000000..0c4f04c0
--- /dev/null
+++ b/commands/utility/credit.js
@@ -0,0 +1,21 @@
+const { Command } = require('discord-akairo');
+
+class creditCommand extends Command {
+	constructor() {
+		super('credit', {
+			aliases: ['credit'],
+			category: 'utility',
+			description: {
+				content: 'Show credits for the bot',
+				usage: '(optional) [@user]',
+				examples: ['', '@user']
+			}
+		});
+	}
+
+	async exec(message) {
+		message.channel.send('Thanks to Tina the Cyclops girl#0064 for inspiring me making a bot,\nThanks to discord.js team for making discord.js\nThanks to 1computer1 for making discord-akairo and the help command');
+	}
+}
+
+module.exports = creditCommand;
\ No newline at end of file