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