summaryrefslogtreecommitdiffstats
path: root/storage/mroonga/vendor/groonga/lib/mrb/scripts/index_info.rb
blob: cf8336e50c707d3e9386937832179209b74c682e (plain)
1
2
3
4
5
6
7
8
9
10
module Groonga
  class IndexInfo
    attr_reader :index
    attr_reader :section_id
    def initialize(index, section_id)
      @index = index
      @section_id = section_id
    end
  end
end