Compare commits

...

1 Commits
main ... v5

Author SHA1 Message Date
FunctionsAPI
02c03a6c60 Automatic push from FunctionsAPI 2025-06-05 13:16:43 +00:00
3 changed files with 7 additions and 2 deletions

View File

@ -1,2 +1 @@
# 6ad021fe02ac4047befbd4b9d64fa93f
# 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