Created
August 16, 2019 19:13
-
-
Save ahmetkucukoglu/27e628fc92c1cff535e15a848462930d to your computer and use it in GitHub Desktop.
Create v1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'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