feat: add hugo-installer + auto-changelog

This commit is contained in:
Henk Verlinde
2021-06-24 08:02:21 +02:00
parent 63786ab461
commit 93f7598f87
12 changed files with 1277 additions and 10255 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.',
}),
});
}