We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6215b1 commit 6dffdb6Copy full SHA for 6dffdb6
httpTrigger/__init__.py
@@ -16,7 +16,7 @@ def main(req: func.HttpRequest) -> func.HttpResponse:
16
name = req_body.get('name')
17
18
if name:
19
- return func.HttpResponse(f"Hello {name}!")
+ return func.HttpResponse(f"Hello my name is {name}!")
20
else:
21
return func.HttpResponse(
22
"Please pass a name in the query string or in the request body",
0 commit comments