remove hello function from web service

This commit is contained in:
benjaminramey
2019-11-21 12:06:15 -06:00
parent 66bca2546c
commit 8fb536b95f
2 changed files with 0 additions and 22 deletions

View File

@@ -1,18 +0,0 @@
'use strict';
module.exports.hello = async event => {
return {
statusCode: 200,
body: JSON.stringify(
{
message: 'Go Serverless v1.0! Your function executed successfully!',
input: event,
},
null,
2
),
};
// 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 };
};

View File

@@ -3,7 +3,3 @@ service: lunchrunweb
provider: provider:
name: aws name: aws
runtime: nodejs12.x runtime: nodejs12.x
functions:
hello:
handler: handler.hello