From 406b1e95575a77087f60fccd8657209a3c38f0b9 Mon Sep 17 00:00:00 2001 From: synedra-datastax <77410784+synedra-datastax@users.noreply.github.com> Date: Fri, 15 Jan 2021 16:17:05 -0800 Subject: [PATCH] Merging helloWorld into master --- functions/helloWorld.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/functions/helloWorld.js b/functions/helloWorld.js index 14d9b34..d3ee809 100644 --- a/functions/helloWorld.js +++ b/functions/helloWorld.js @@ -1,3 +1,6 @@ exports.handler = async (event, context) => { - // let's return a JSON response that looks like: { hello: "world" } -}; + return { + statusCode: 200, + body: JSON.stringify({ hello: "world" }), + }; +}; \ No newline at end of file