Initial website work

This commit is contained in:
Ellie Huxtable
2022-05-31 09:59:46 +01:00
parent 9ac0c60cc4
commit 956e4fe0a3
138 changed files with 13266 additions and 11038 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.',
}),
});
}