Couple of nodejs examples -- hello world and a slack bot

This commit is contained in:
Soam Vasani
2016-11-11 09:30:55 -08:00
parent 1a86078fc0
commit ac039535a1
2 changed files with 35 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
module.exports = function(context, callback) {
callback(200, "Hello, world!\n");
}