Skip to content

Latest commit

 

History

History

hello-world

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Hello World function

This is an example function that runs in a node:alpine container.

When calling this function, the following request body is expected:

{
  "message": "some kind of a message"
}

The function will then return the message from the request as such:

{
  "success": true,
  "data": {
    "message": "some kind of a message"
  }
}