Skip to content

Instantly share code, notes, and snippets.

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 kevinchisholm/4533a38af8662d19fa463f0936a9d965 to your computer and use it in GitHub Desktop.
Save kevinchisholm/4533a38af8662d19fa463f0936a9d965 to your computer and use it in GitHub Desktop.
module.exports.hats = async (event, context) => {
return {
statusCode: 200,
body: JSON.stringify({
message: 'This is the HATS endpiont.'
}),
};
};
module.exports.shoes = async (event, context) => {
return {
statusCode: 200,
body: JSON.stringify({
message: 'This is the SHOES endpiont.'
}),
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment