feat: add doks as a node module

This commit is contained in:
Henk Verlinde 2021-03-18 15:50:09 +01:00
commit cfed05efaf
55 changed files with 26751 additions and 0 deletions

View file

@ -0,0 +1,11 @@
exports.handler = (event, context, callback) => {
callback (null, {
statusCode: 200,
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
message: 'Hi from Lambda.',
}),
});
}