mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-18 21:40:49 +02:00
eShop Command
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
const Command = require('../../structures/Command');
|
||||
|
||||
module.exports = class JustDoItCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'just-do-it',
|
||||
aliases: ['motivate'],
|
||||
group: 'single',
|
||||
memberName: 'just-do-it',
|
||||
description: 'Sends a link to the "Just Do It!" motivational speech.'
|
||||
});
|
||||
}
|
||||
|
||||
run(msg) {
|
||||
return msg.say('https://www.youtube.com/watch?v=ZXsQAXx_ao0');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user