Files
jarv.is/functions/hello.js
T
2020-07-10 20:00:39 -04:00

13 lines
298 B
JavaScript

export async function handler(event, context, callback) {
return {
statusCode: 200,
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
message: "Hello from the other side...",
lucky_num: `${Math.floor(Math.random() * 100)}`,
}),
};
}