2015-12-06 19:21:21 -08:00

9 lines
197 B
JavaScript

'use strict';
require('dotenv');
// Lambda Handler
module.exports.handler = function(event, context) {
return context.done(null, { message: 'simple lambda function has run successfully' });
};