Automatic push from FunctionsAPI

This commit is contained in:
FunctionsAPI 2025-07-14 12:22:59 +00:00
parent 94a4224efc
commit 9bc27b9331
3 changed files with 7 additions and 2 deletions

View File

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