Automatic push from FunctionsAPI

This commit is contained in:
FunctionsAPI 2025-06-05 13:55:30 +00:00
parent a5f88e8d89
commit bfcf1dbc47
3 changed files with 8 additions and 2 deletions

View File

@ -1,2 +1 @@
# 72057db534f44142a06668a9271e8fad
# python hello-world

5
main.py Normal file
View File

@ -0,0 +1,5 @@
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