Skip to content

Instantly share code, notes, and snippets.

@ahmetkucukoglu
Created August 16, 2019 19:14
GetAll v1
'use strict';
module.exports.getAll = async event => {
return {
statusCode: 200,
body: JSON.stringify(
{
method: 'Get All'
},
null,
2
),
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment