Skip to content

Instantly share code, notes, and snippets.

@jason-dark
Created July 8, 2018 22:11
Show Gist options
  • Save jason-dark/247451f2165c06bf16a92d4fbdde4e81 to your computer and use it in GitHub Desktop.
Save jason-dark/247451f2165c06bf16a92d4fbdde4e81 to your computer and use it in GitHub Desktop.
const functions = require('firebase-functions');
var load = require('./display-data/load');
exports.load = functions.https.onRequest((req, res) => {
load.handler(req, res);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment