Created
December 27, 2018 18:56
-
-
Save matisiekpl/57174e21cad7f0f37cbe77c7096e934d to your computer and use it in GitHub Desktop.
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 runtime = require('./runtime.js'); | |
module.exports.helloWorld = runtime.functions.onRequest(async (req, res) => { | |
res.json({ | |
message: 'Hello World!' | |
}) | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment