Files
2021-03-12 22:40:34 +01:00

10 lines
195 B
Ruby

module Report
module Csv
class Post < Base
def initialize(org, collection, type)
self.decorator = Report::PostDecorator.new(org, collection, type)
end
end
end
end