{ 'content-type' => 'text/event-stream', 'cache-control' => 'no-cache', }.freeze
64 65 66 67 68
# File 'lib/roda/plugins/sse.rb', line 64 def sse(&block) get do halt [200, HEADERS.dup, Body.new(block)] end end