in continue_with.go [22:26]
func ContinueActionToFunc[T any](action func(context.Context, T) error) func(context.Context, T) (interface{}, error) { return func(ctx context.Context, t T) (interface{}, error) { return nil, action(ctx, t) } }