From 6a0bd24885b570bed579d50b1bc74d55e190e27f Mon Sep 17 00:00:00 2001 From: Jack Kleeman Date: Thu, 7 Nov 2024 15:48:47 +0000 Subject: [PATCH] Update handler.go Co-authored-by: Francesco Guardiani --- handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handler.go b/handler.go index 5e2bede..88c9d7d 100644 --- a/handler.go +++ b/handler.go @@ -31,7 +31,7 @@ type ObjectSharedHandlerFn[I any, O any] func(ctx ObjectSharedContext, input I) // ObjectHandlerFn is the signature for a Workflow 'Run' handler function type WorkflowHandlerFn[I any, O any] func(ctx WorkflowContext, input I) (O, error) -// WorkflowSharedHandlerFn is the signature for a Workflow shared-mode handler function +// WorkflowSharedHandlerFn is the signature for a Workflow shared handler function type WorkflowSharedHandlerFn[I any, O any] func(ctx WorkflowSharedContext, input I) (O, error) type serviceHandler[I any, O any] struct {