Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. 'use strict';
  2.  
  3. module.exports.helloWorld = (event, context, callback) => {
  4. const response = {
  5. statusCode: 200,
  6. headers: {
  7. 'Access-Control-Allow-Origin': '*',
  8. },
  9. body: JSON.stringify({
  10. message: `Hello World`
  11. }),
  12. };
  13.  
  14. callback(null, response);
  15. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement