push doks layout

This commit is contained in:
cedricve
2021-06-07 20:36:33 +02:00
parent 698346fd7d
commit 1a8f092197
345 changed files with 30903 additions and 33447 deletions

0
assets/lambda/.gitignore vendored Normal file
View File

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.',
}),
});
}