Skip to content

Instantly share code, notes, and snippets.

@mootrichard
Created April 13, 2018 00:01
Show Gist options
  • Save mootrichard/ac0636683157b5e6a97875389d92f706 to your computer and use it in GitHub Desktop.
Save mootrichard/ac0636683157b5e6a97875389d92f706 to your computer and use it in GitHub Desktop.
Our Initial Version of the Serverless function
'use strict';
const SquareConnect = require('square-connect');
module.exports.checkout = (event, context, callback) => {
let response = "Success! Our function is running!";
callback(null, response);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment