You've already forked serverless-webpack
mirror of
https://github.com/encounter/serverless-webpack.git
synced 2026-03-30 11:37:58 -07:00
9 lines
186 B
JavaScript
9 lines
186 B
JavaScript
'use strict';
|
|
|
|
var AWS = require('aws-sdk');
|
|
var fbgraph = require('fbgraph');
|
|
|
|
module.exports.hello = function (event, context, cb) {
|
|
cb(null, { message: 'hello fb & aws', event });
|
|
}
|