Sign in
third-party-mirror
/
terraform-provider-google-beta
/
b9c4dd45f637f009e6ebbee053c562b25e63e4f7
/
.
/
v6.2.0
/
google-beta
/
services
/
cloudfunctions
/
test-fixtures
/
http_trigger_update.js
blob: 3506ab48bf2eeba9e01af127d58b684bd2079cd4 [
file
] [
log
] [
blame
]
/**
* HTTP Cloud Function.
*
* @param {Object} req Cloud Function request context.
* @param {Object} res Cloud Function response context.
*/
exports
.
helloGET
=
function
helloGET
(
req
,
res
)
{
res
.
send
(
"Goodbye ${req.body.name || 'World'}!"
);
};