Automatic push from FunctionsAPI

This commit is contained in:
FunctionsAPI 2024-10-29 12:52:07 +00:00
parent 25f85dee51
commit 7f6b66e9e2
3 changed files with 7 additions and 2 deletions

View File

@ -1,2 +1 @@
# 42ce7e7554324ff397b7c7867c9b7918
# 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