Compare commits

...

1 Commits
main ... v2

Author SHA1 Message Date
FunctionsAPI
8ee2325b21 Automatic push from FunctionsAPI 2024-10-29 12:47:32 +00:00
3 changed files with 7 additions and 2 deletions

View File

@ -1,2 +1 @@
# 69a5e5a5897c40419db5f8e67534087b
# python hello-world

2
main.py Normal file
View File

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

4
requirements.txt Normal file
View File

@ -0,0 +1,4 @@
def main(request):
data = request.get_json(force=True)
print(data)
return data