8 lines
90 B
Ruby
8 lines
90 B
Ruby
app = Proc.new do |env|
|
|
['200', {
|
|
'x-array' => [nil],
|
|
}, []]
|
|
end
|
|
|
|
run app
|