nghttp2/integration-tests/resp-set-header.rb

8 lines
89 B
Ruby

class App
def on_resp(env)
env.resp.set_header "Alpha", "bravo"
end
end
App.new