mirror of
https://github.com/LBRYFoundation/lbry-wunderbot.git
synced 2025-08-23 09:37:27 +00:00
18 lines
No EOL
255 B
JavaScript
18 lines
No EOL
255 B
JavaScript
/*'use strict';
|
|
|
|
exports.commands = [
|
|
"speech"
|
|
]
|
|
|
|
exports.init = function(bot){
|
|
console.log(bot);
|
|
}
|
|
|
|
exports.speech = {
|
|
usage: "<claim>",
|
|
description: 'Speech coming soon...',
|
|
process: function(bot,msg,suffix){
|
|
console.log(msg.member.user);
|
|
}
|
|
}
|
|
*/ |