Skip to content
Permalink
12d11a0a27
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
10 lines (8 sloc) 230 Bytes
import functions_framework
from cloudevents.http import CloudEvent
@functions_framework.http
def main_http(cloud_event: CloudEvent) -> None:
import owner_report_native
return ""
if __name__ == '__main__':
main_http()