Add LatencyTest project

This commit is contained in:
SteveSandersonMS
2016-05-18 11:51:47 +01:00
parent 28aa7bfadb
commit 22deb2ad28
4 changed files with 69 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
module.exports = function(callback, incomingParam1) {
var result = 'Hello, ' + incomingParam1 + '!';
callback(/* error */ null, result);
}