Skip to content

Instantly share code, notes, and snippets.

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