2016-10-18 15:04:45 +02:00

6 lines
138 B
JavaScript

'use strict';
module.exports.hello = (event, context, callback) => {
callback(null, { message: 'Hello from API Gateway!', event });
};