Last active
August 3, 2016 02:49
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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