empresalibre.net/source/functions/hi-from-lambda.js

12 lines
232 B
JavaScript
Raw Normal View History

2021-11-04 22:52:22 -06:00
exports.handler = (event, context, callback) => {
callback (null, {
statusCode: 200,
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
message: 'Hi from Lambda.',
}),
});
}