Skip to content

Instantly share code, notes, and snippets.

@mdlavin
Created June 15, 2018 16:46
Show Gist options
  • Save mdlavin/e112f0555eed8736e12332323a73d99b to your computer and use it in GitHub Desktop.
Save mdlavin/e112f0555eed8736e12332323a73d99b to your computer and use it in GitHub Desktop.
A simple lambda that returns a null payload
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