mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-05 02:10:27 -07:00
Updating the maintainers guide with updated intructions from Ansible engineers. Fixing linting issues, and adding the linter as a GitHub workflow to ensure there are no regressions.
10 lines
203 B
Python
10 lines
203 B
Python
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"
|