Advertisement
Guest User

Untitled

a guest
Jul 24th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. const lambdaHandler = async function lambdaHandler(event, context) {
  2. const response = {
  3. statusCode: 200,
  4. headers: {
  5. 'Content-Type': 'text/html'
  6. },
  7. body : '<h1> hello hugo </h1><p>go Serverless </p>',
  8. };
  9. return response;
  10. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement