hope-it-stays-here/handler.js

11 lines
183 B
JavaScript
Raw Permalink Normal View History

2018-11-12 20:13:45 +00:00
'use strict';
module.exports.hello = async (event, context) => {
return {
statusCode: 200,
body: JSON.stringify({
text: "let's hope it stays here..."
}),
};
};