aboutsummaryrefslogtreecommitdiff
path: root/app/models/image_upload.rb
blob: 22a8381d80e1ece22623b7dee3d273b97fe072d2 (plain)
1
2
3
4
5
6
7
8
9
10
class ImageUpload

  def initialize(opts = {})
    @compute = opts[:compute]
  end

  private
  attr_reader :compute

end