Created
June 15, 2018 16:46
-
-
Save mdlavin/e112f0555eed8736e12332323a73d99b to your computer and use it in GitHub Desktop.
A simple lambda that returns a null payload
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
exports.returnNull = function (event, context, callback) { | |
callback(null, null); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment