diff --git a/functions/helloget.js b/functions/helloget.js new file mode 100644 index 0000000..c694c22 --- /dev/null +++ b/functions/helloget.js @@ -0,0 +1,5 @@ +module.exports = { + foo: function (event, context) { + return 'hello world!'; + } +}