google.cloud/test-fixtures/cloud-function-source/main.py
Yusuke Tsutsumi a9545c77a4 fix linting and updating maintenance guide
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.
2022-12-07 15:36:21 -08:00

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"