1app = Proc.new do |env|
2    ['200', {
3        'Content-Length' => '0'
4    }, ['']]
5end
6
7run app
8