elm-pages-v3-beta/examples/pokedex/functions/time.js
2021-06-01 14:21:10 -07:00

15 lines
327 B
JavaScript

exports.handler =
/**
* @param {import('aws-lambda').APIGatewayProxyEvent} event
* @param {any} context
*/
async function (event, context) {
return {
body: JSON.stringify(new Date().toTimeString()),
headers: {
"Content-Type": "application/json",
},
statusCode: 200,
};
};