class CopyTunerClient::RequestSync

def _call(env)

def _call(env)
  @req = ::Rack::Request.new(env)
  case @req.path_info
  when /^\/copytuner\/?$/
    index
  when /sync/
    sync
  else
    @app.call(env)
  end
end