mirror of
https://github.com/LBRYFoundation/lbry-wunderbot.git
synced 2025-08-23 09:37:27 +00:00
21 lines
583 B
JavaScript
21 lines
583 B
JavaScript
/*exports.commands = [
|
|
"remind" // command that is in this file, every command needs it own export as shown below
|
|
]
|
|
|
|
exports.custom = [
|
|
"checkReminders"
|
|
]
|
|
|
|
exports.remind = {
|
|
usage: "<time> <message>",
|
|
description: 'description of command',
|
|
process: async function(bot,msg,suffix){
|
|
console.log(suffix);
|
|
// Here the bot,msg and suffix is avaible, this function can be async if needed.
|
|
}
|
|
}
|
|
|
|
exports.checkReminders = function(bot) {
|
|
// Other functions that needs to be ran once on bootup!
|
|
// For example a timed function and or some init stuff..
|
|
}*/
|