mirror of https://github.com/knative/func.git
17 lines
417 B
Python
17 lines
417 B
Python
from parliament import Context, event
|
|
|
|
|
|
@event
|
|
def main(context: Context):
|
|
"""
|
|
Function template
|
|
The context parameter contains the Flask request object and any
|
|
CloudEvent received with the request.
|
|
"""
|
|
|
|
# Add your business logic here
|
|
|
|
# The return value here will be applied as the data attribute
|
|
# of a CloudEvent returned to the function invoker
|
|
return context.cloud_event.data
|