Compare commits

...

1 Commits
main ... v6

Author SHA1 Message Date
FunctionsAPI
ec7f5a41f7 Automatic push from FunctionsAPI 2025-02-06 14:32:36 +00:00
3 changed files with 12 additions and 2 deletions

View File

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

2
main.py Normal file
View File

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

9
requirements.txt Normal file
View File

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