8 lines
96 B
Ruby
8 lines
96 B
Ruby
app = Proc.new do |env|
|
|
['200', {
|
|
'Content-Length' => '0'
|
|
}, ['']]
|
|
end
|
|
|
|
run app
|