Skip to content

Instantly share code, notes, and snippets.

@cmawhorter
Created February 13, 2017 19:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cmawhorter/3f6ab990194a1b8e75d7a3f8bb262049 to your computer and use it in GitHub Desktop.
Save cmawhorter/3f6ab990194a1b8e75d7a3f8bb262049 to your computer and use it in GitHub Desktop.
lambda hello world
module.exports.handle = function(event, context, callback) {
callback(null, 'hello world!');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment