Initial setup

This commit is contained in:
Ben Ramey
2018-09-18 06:28:25 -05:00
commit 2d42d2490c
5 changed files with 4185 additions and 0 deletions

14
handler.js Normal file
View File

@@ -0,0 +1,14 @@
'use strict';
module.exports.hello = async (event, context) => {
return {
statusCode: 200,
body: JSON.stringify({
message: 'Go Serverless v1.0! Your function executed successfully!',
input: event,
}),
};
// Use this code if you don't use the http event with the LAMBDA-PROXY integration
// return { message: 'Go Serverless v1.0! Your function executed successfully!', event };
};