9 lines
130 B
Ruby
9 lines
130 B
Ruby
app = Proc.new do |env|
|
|
['200', {
|
|
'Content-Length' => '0',
|
|
'rack.header' => 'hello'
|
|
}, ['']]
|
|
end
|
|
|
|
run app
|