Customizing with Lifecycle Hooks
Background
Lifecycle HooksWriting a Lifecycle Hooks Script
from stoobly_agent.app.proxy.context import InterceptContext
from stoobly_agent.app.proxy.record.context import RecordContext
def handle_before_request(context: InterceptContext):
print('Before request!')
def handle_before_record(context: RecordContext):
print('Before record!')Enabling Lifecycle Hook Script Use
Example
Last updated