hope-it-stays-here/handler.js

11 lines
183 B
JavaScript

'use strict';
module.exports.hello = async (event, context) => {
return {
statusCode: 200,
body: JSON.stringify({
text: "let's hope it stays here..."
}),
};
};