Guest User

Untitled

a guest
Jun 19th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. 'use strict';
  2.  
  3. module.exports.endpoint = (event, context, callback) => {
  4. const response = {
  5. statusCode: 200,
  6. body: JSON.stringify({
  7. message: `Hello, the current time is ${new Date().toTimeString()}.`,
  8. }),
  9. };
  10.  
  11. callback(null, response);
  12. };
Add Comment
Please, Sign In to add comment