Skip to content

Instantly share code, notes, and snippets.

@matburt
Created May 22, 2016 04:09
Show Gist options
  • Select an option

  • Save matburt/5f5289f6c0c6226879bad5b8fe7917f2 to your computer and use it in GitHub Desktop.

Select an option

Save matburt/5f5289f6c0c6226879bad5b8fe7917f2 to your computer and use it in GitHub Desktop.
Google Cloud Functions test
use 'strict'
exports.hellohttp = function (context, data) {
console.log(data.message);
context.success('My GCF Function: ' + data.message);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment