Sign in
third-party-mirror
/
terraform-provider-google-beta
/
7018e2f3f116fdacfd66c03551fbf0c3db62170a
/
.
/
v5.18.0
/
google-beta
/
services
/
cloudfunctions2
/
test-fixtures
/
index-js
blob: 70723fa354caff8d89c4fee1414478ee76f92163 [
file
] [
log
] [
blame
]
const
functions
=
require
(
'@google-cloud/functions-framework'
);
functions
.
http
(
'helloHttp'
,
(
req
,
res
)
=>
{
res
.
send
(
`Hello ${req.query.name || req.body.name || 'World'}!`
);
});