Last active
May 9, 2020 16:46
-
-
Save owfm/a7ff00a09f6de0a24992cadcf97e6ed1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// email.js | |
'use-strict' | |
export const congratulations = (event, context) => { | |
return "Congrats! You got the job!"; | |
}; | |
export const commiserations = (event, context) => { | |
return "We're sorry, you weren't lucky this time."; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment