Automatic push from FunctionsAPI

This commit is contained in:
FunctionsAPI 2025-01-21 11:04:59 +00:00
parent 77b7ada01e
commit 88704e0058
3 changed files with 10 additions and 2 deletions

View File

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

7
main.py Normal file
View File

@ -0,0 +1,7 @@
def print_name(name):
# Print the name
print("The name is:", name)
def main(request):
name = "Ali" # You can replace this with any name
print_name(name)

2
requirements.txt Normal file
View File

@ -0,0 +1,2 @@
functions-framework==1.4.3
markupsafe==2.0.1