Automatic push from FunctionsAPI

This commit is contained in:
FunctionsAPI 2025-07-10 06:34:00 +00:00
parent 1fb871a1d5
commit 26a3223250
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