mirror of
https://github.com/iv-org/invidious.io.git
synced 2024-12-28 00:59:31 -05:00
12 lines
232 B
JavaScript
12 lines
232 B
JavaScript
exports.handler = (event, context, callback) => {
|
|
callback (null, {
|
|
statusCode: 200,
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({
|
|
message: 'Hi from Lambda.',
|
|
}),
|
|
});
|
|
}
|