diff --git a/hello-node/code/handler-http.js b/hello-node/code/handler-http.js index 7a15d05..ec016dc 100644 --- a/hello-node/code/handler-http.js +++ b/hello-node/code/handler-http.js @@ -5,3 +5,4 @@ exports.handle = async (event) => { const name = event.name || 'World'; return { message: `Hello, ${name}!` }; }; + diff --git a/hello-node/code/handler-job.js b/hello-node/code/handler-job.js index 3342114..5081ff9 100644 --- a/hello-node/code/handler-job.js +++ b/hello-node/code/handler-job.js @@ -7,3 +7,4 @@ exports.handle = async (event) => { const sum = numbers.reduce((acc, n) => acc + n, 0); return { input: numbers, sum, count: numbers.length }; }; + diff --git a/hello-node/handler-http.zip b/hello-node/handler-http.zip index c0c865e..03b9353 100644 Binary files a/hello-node/handler-http.zip and b/hello-node/handler-http.zip differ diff --git a/hello-node/handler-job.zip b/hello-node/handler-job.zip index 283b2cf..a88be32 100644 Binary files a/hello-node/handler-job.zip and b/hello-node/handler-job.zip differ