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