9 lines
141 B
Ruby
9 lines
141 B
Ruby
app = Proc.new do |env|
|
|
['200', {
|
|
'Content-Length' => '0',
|
|
'Server-Port' => env['SERVER_PORT']
|
|
}, ['']]
|
|
end
|
|
|
|
run app
|