mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-06-16 02:15:48 +00:00
19 lines
195 B
Ruby
19 lines
195 B
Ruby
require 'fiber'
|
|
require 'sinatra'
|
|
|
|
get '/hi' do
|
|
|
|
class Response
|
|
def each
|
|
for i in 1..10
|
|
yield "ciao<br/>"
|
|
Fiber.yield
|
|
end
|
|
end
|
|
end
|
|
|
|
Response.new
|
|
end
|
|
|
|
run Sinatra::Application
|