From 975f66f2eebe9dadba04f275774d4ab83f74cf25 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 13 Apr 2024 14:04:41 +0200 Subject: Adding upstream version 7.7.0+dfsg. Signed-off-by: Daniel Baumann --- .../google/cloud/test-fixtures/cloud-function-source/main.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 ansible_collections/google/cloud/test-fixtures/cloud-function-source/main.py (limited to 'ansible_collections/google/cloud/test-fixtures/cloud-function-source/main.py') diff --git a/ansible_collections/google/cloud/test-fixtures/cloud-function-source/main.py b/ansible_collections/google/cloud/test-fixtures/cloud-function-source/main.py new file mode 100644 index 000000000..2578c4185 --- /dev/null +++ b/ansible_collections/google/cloud/test-fixtures/cloud-function-source/main.py @@ -0,0 +1,10 @@ +import functions_framework + + +# Register an HTTP function with the Functions Framework +@functions_framework.http +def helloGET(request): + # Your code here + + # Return an HTTP response + return "OK" -- cgit v1.2.3