Automatic push from FunctionsAPI

This commit is contained in:
FunctionsAPI 2024-10-29 12:53:55 +00:00
parent 2f2646fd17
commit 7716581c97
3 changed files with 7 additions and 2 deletions

View File

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