Skip to content

Instantly share code, notes, and snippets.

@digitalbase
Last active April 22, 2020 19:32
Show Gist options
  • Save digitalbase/60591468ff6c6c2c9c03a1616c14a692 to your computer and use it in GitHub Desktop.
Save digitalbase/60591468ff6c6c2c9c03a1616c14a692 to your computer and use it in GitHub Desktop.
const serverless = require('serverless-http');
const express = require('express');
const app = express();
app.post('/hello', function (req, res) {
res.status(200).send(`Hi. Awesome guide. Keep reading @ https://medium.com/solving-marketing-attribution`);
});
module.exports.handler = serverless(app);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment