Last active
May 21, 2020 21:37
-
-
Save olebedev/c61798aa99709c64ead8a50aa1349020 to your computer and use it in GitHub Desktop.
An AWS Lambda stub
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'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