Skip to content

Instantly share code, notes, and snippets.

@thomasvds
Created December 5, 2018 02:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thomasvds/28dd8f7438a31a44fb1c759bac78dd2f to your computer and use it in GitHub Desktop.
Save thomasvds/28dd8f7438a31a44fb1c759bac78dd2f to your computer and use it in GitHub Desktop.
exports.handler = async (event) => {
const response = {
statusCode: 302,
headers: {
"Location" : "https://example.com"
},
body: null
};
return response;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment