Skip to content

Instantly share code, notes, and snippets.

@olebedev
Last active May 21, 2020 21:37
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 olebedev/c61798aa99709c64ead8a50aa1349020 to your computer and use it in GitHub Desktop.
Save olebedev/c61798aa99709c64ead8a50aa1349020 to your computer and use it in GitHub Desktop.
An AWS Lambda stub
'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
const handler = async (event, context) => {
return {
ok: true,
event,
context,
};
};
exports.handler = handler;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment