Compare commits

...

1 Commits
main ... v3

Author SHA1 Message Date
FunctionsAPI
a52cead5a3 Automatic push from FunctionsAPI 2025-02-06 14:31:27 +00:00
3 changed files with 15 additions and 2 deletions

View File

@ -1,2 +1 @@
# f85b40da553544b19af27a76af8520ab
# python hello-world

2
main.py Normal file
View File

@ -0,0 +1,2 @@
def main(request):
return "hello, world"

12
requirements.txt Normal file
View File

@ -0,0 +1,12 @@
functions-framework==1.4.3
markupsafe==2.0.1
def print_name(name):
print("The name is:", name)
def main(request):
request_json = request.get_json(silent=True)
print(request_json)
name = "Ali"
print_name(name)
return name