Skip to content

Instantly share code, notes, and snippets.

@ahmetkucukoglu
Created August 16, 2019 19:14
Show Gist options
  • Save ahmetkucukoglu/2ecf6739346cba0d1267cd6047fb888d to your computer and use it in GitHub Desktop.
Save ahmetkucukoglu/2ecf6739346cba0d1267cd6047fb888d to your computer and use it in GitHub Desktop.
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