Compare commits

...

1 Commits
main ... v6

Author SHA1 Message Date
FunctionsAPI
26a3223250 Automatic push from FunctionsAPI 2025-07-10 06:34:00 +00:00
3 changed files with 7 additions and 2 deletions

View File

@ -1,2 +1 @@
# 7a2178af495b429cb4f7aff141d729de # python hello-world

4
main.py Normal file
View File

@ -0,0 +1,4 @@
def main(request):
data = request.get_json(force=True)
name = data.get("name", "world")
return f"Hello, {name}"

2
requirements.txt Normal file
View File

@ -0,0 +1,2 @@
functions-framework==1.4.3
markupsafe==2.0.1