Skip to content

Instantly share code, notes, and snippets.

@sr229
Last active August 3, 2016 02:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sr229/83219dd5cc5a19504b8b393be1640905 to your computer and use it in GitHub Desktop.
Save sr229/83219dd5cc5a19504b8b393be1640905 to your computer and use it in GitHub Desktop.
A sample module template for project-snowflake. https://github.com/sr229/project-snowflake
exports.commands =[
"ping",
];
exports.ping = {
description : "ping pong example",
process : function (bot,msg){
bot.sendMessage(msg.channel,msg.author + "pong!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment