module Seahorse::Client::HandlerBuilder

def handle_request(*args, &block)

def handle_request(*args, &block)
  handler(*args) do |context|
    block.call(context)
    @handler.call(context)
  end
end