Compare commits

..

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

3 changed files with 2 additions and 15 deletions

View File

@ -1 +1,2 @@
# python hello-world
# 0905a8d4ce29457aa80e029e3a224896

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