Sign in
third-party-mirror
/
terraform-provider-google-beta
/
7018e2f3f116fdacfd66c03551fbf0c3db62170a
/
.
/
v5.18.0
/
google-beta
/
services
/
cloudfunctions
/
test-fixtures
/
http_trigger.js
blob: 1b486f0986c6a9ed4581fa9d93ccdcfcf4bd29e5 [
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
(
"Hello ${req.body.name || 'World'}!"
);
};