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/45347779e2ee0572595234bdabc13390 to your computer and use it in GitHub Desktop.
Save kevinchisholm/45347779e2ee0572595234bdabc13390 to your computer and use it in GitHub Desktop.
// foo function
module.exports.handler = async (event, context) => {
return {
statusCode: 200,
body: JSON.stringify({
message: `${process.env.staticMessage} / ${process.env.dynamicMessage}`,
})
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment