Files
nginx-unit/test/ruby/body_array/config.ru
2018-03-21 18:26:40 +03:00

6 lines
101 B
Ruby

app = Proc.new do |env|
['200', {'Content-Length' => '10'}, ['0123', '4567', '89']]
end
run app