Last active
April 13, 2018 11:30
-
-
Save yusinto/843e1a7a1bed8ecfed34f04efeffec5f to your computer and use it in GitHub Desktop.
Cloud functions emulator demo
This file contains hidden or 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
const greet = (req, res) => { | |
console.log('hello world from the emulator!'); | |
res.send('ok google'); | |
}; | |
module.exports = { | |
greet, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment