blob: 2578c418512979c82f4ddd5dea062f71b80df38a (
plain)
1
2
3
4
5
6
7
8
9
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"
|