Created
December 19, 2021 00:51
-
-
Save grant/fbeae4ede7524b1386b2ddbc948eac18 to your computer and use it in GitHub Desktop.
Simple Node Function
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
const FunctionsFramework = require('@google-cloud/functions-framework'); | |
FunctionsFramework.http('helloWorld', (req, res) => { | |
res.send('Hot-reload me?'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment