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