8 lines
89 B
Ruby
8 lines
89 B
Ruby
class App
|
|
def on_resp(env)
|
|
env.resp.set_header "Alpha", "bravo"
|
|
end
|
|
end
|
|
|
|
App.new
|