mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
10 lines
199 B
JavaScript
10 lines
199 B
JavaScript
'use strict';
|
|
|
|
function hello(params) {
|
|
const name = params.name || 'World';
|
|
console.log('log', { payload: `Hello, ${name}` });
|
|
return { payload: `Hello, ${name}!` };
|
|
}
|
|
|
|
exports.hello = hello;
|