Skip to content

Instantly share code, notes, and snippets.

@ahmetkucukoglu
Created August 16, 2019 19:13
Show Gist options
  • Save ahmetkucukoglu/27e628fc92c1cff535e15a848462930d to your computer and use it in GitHub Desktop.
Save ahmetkucukoglu/27e628fc92c1cff535e15a848462930d to your computer and use it in GitHub Desktop.
Create v1
'use strict';
module.exports.create = async event => {
var json = JSON.parse(event.body);
return {
statusCode: 200,
body: JSON.stringify(
{
method: 'Create',
body: json,
},
null,
2
),
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment