Skip to content

Instantly share code, notes, and snippets.

@HyunSeob
Last active May 27, 2017 01:35
Show Gist options
  • Save HyunSeob/e2c31f6b018d4880bb396e31ef9d25f8 to your computer and use it in GitHub Desktop.
Save HyunSeob/e2c31f6b018d4880bb396e31ef9d25f8 to your computer and use it in GitHub Desktop.
exports.handler = (event, context, callback) => {
const result = event.num * 2;
callback(null, result);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment