Automatic push from FunctionsAPI

This commit is contained in:
FunctionsAPI 2025-06-05 13:05:25 +00:00
parent d232c9b08b
commit 6bae02ea36
3 changed files with 8 additions and 2 deletions

View File

@ -1,2 +1 @@
# 5633d962cdf94000ba35ac4fee54cd8e # python hello-world

5
main.py Normal file
View File

@ -0,0 +1,5 @@
def main(request):
request_json = request.get_json(silent=True) or {}
name = request_json.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