Compare commits

..

No commits in common. "v5" and "main" have entirely different histories.
v5 ... main

3 changed files with 2 additions and 15 deletions

View File

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

View File

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

View File

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