Skip to content

Instantly share code, notes, and snippets.

@bouzuya
Last active August 29, 2015 14:06
Show Gist options
  • Save bouzuya/6031b428ea2d7ac03618 to your computer and use it in GitHub Desktop.
Save bouzuya/6031b428ea2d7ac03618 to your computer and use it in GitHub Desktop.
// Description:
// Hello
// Commands:
// hubot hello - say hello!
module.exports = function(robot) {
robot.respond(/hello/i, function(res) {
res.send('Hello, Gist!');
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment