Skip to content

Instantly share code, notes, and snippets.

@alexandermckay
Last active October 19, 2019 09:01
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 alexandermckay/66cb3980f50a242a4b3ceffe7bc73f18 to your computer and use it in GitHub Desktop.
Save alexandermckay/66cb3980f50a242a4b3ceffe7bc73f18 to your computer and use it in GitHub Desktop.
minimum-viable-function-b.js
const { https } = require('firebase-functions');
const sendEmail = https.onRequest((req, res) => {
res.send({ status: 200 });
});
module.exports = sendEmail;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment