From 128c86dab15e932e1e9a9429c1ea691b9eac3b2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Fri, 26 Apr 2019 15:22:46 +0200 Subject: [PATCH] Create helloget.js --- functions/helloget.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 functions/helloget.js 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!'; + } +}