lucene/client/ruby/solrb/lib/solr/response/add_document.rb

12 lines
149 B
Ruby

module Solr
module Response
class AddDocument < Solr::Response::Xml
def initialize(xml)
super(xml)
end
end
end
end