mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
8 lines
169 B
Bash
8 lines
169 B
Bash
function hello () {
|
|
EVENT_DATA=$1
|
|
echo "$EVENT_DATA" 1>&2;
|
|
RESPONSE="{\"body\": {\"input\": $EVENT_DATA, \"msg\": \"Wecome to serverless!\"}}"
|
|
|
|
echo $RESPONSE
|
|
}
|