Austen Collins 75f6737dcb All: Change function paths to use this convention: module/function#subfunction@endpoint
FunctionRun: Write tests for specifying funciton path and function name, improve CLI support
2015-12-08 17:24:53 -08:00

11 lines
285 B
JavaScript

'use strict';
// Load ENV
var ServerlessHelpers = require('serverless-helpers-js');
ServerlessHelpers.loadEnv();
// Lambda Handler
module.exports.one = function(event, context) {
return context.done(null, { message: '"Simple Two - One" lambda function has run successfully' });
};