Skip to content

Instantly share code, notes, and snippets.

@fernyettheplant
Created July 21, 2020 15:37
Show Gist options
  • Save fernyettheplant/a68c45b0913d8f82b4aae117292d1bdf to your computer and use it in GitHub Desktop.
Save fernyettheplant/a68c45b0913d8f82b4aae117292d1bdf to your computer and use it in GitHub Desktop.
'use strict';
module.exports.http = async (event) => {
return {
statusCode: 200,
body: JSON.stringify(
{
message: 'the result',
},
null,
2
),
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment