Serverless handler stub created

This commit is contained in:
Senad Uka
2019-03-07 06:24:08 +01:00
parent 4726031c8e
commit 3f8e6438b2
17 changed files with 1575 additions and 43 deletions

55
ma-api/handler.js Normal file
View File

@@ -0,0 +1,55 @@
'use strict';
module.exports.sendnotification = async (event, context) => {
return {
statusCode: 200,
body: JSON.stringify({
message: 'Send notification!',
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 };
};
module.exports.getitems = async (event, context) => {
return {
statusCode: 200,
body: JSON.stringify({
message: 'Get Items',
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 };
};
module.exports.marketalerts = async (event, context) => {
return {
statusCode: 200,
body: JSON.stringify({
message: 'Market alerts',
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 };
};
module.exports.payforalert = async (event, context) => {
return {
statusCode: 200,
body: JSON.stringify({
message: 'Pay for alert',
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 };
};