Skip to content

remotebeta/codybot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

codybot

How to add a command:

  • create a .js file in the commands/ directory using the below code as a reference
'use strict';

module.exports = function example(controller) {
  controller.hears('example', ['direct_mention'], function(bot, message) {
    bot.reply(message, 'You just executed the example command!');
  });
}

check out botkit for more information!

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published