Files
nginx-unit/test/ruby/hooks/config.ru
2021-07-02 13:00:57 +00:00

8 lines
96 B
Ruby

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