aboutsummaryrefslogtreecommitdiff
path: root/app/models/image_upload.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/image_upload.rb')
-rw-r--r--app/models/image_upload.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/models/image_upload.rb b/app/models/image_upload.rb
new file mode 100644
index 0000000..22a8381
--- /dev/null
+++ b/app/models/image_upload.rb
@@ -0,0 +1,10 @@
+class ImageUpload
+
+ def initialize(opts = {})
+ @compute = opts[:compute]
+ end
+
+ private
+ attr_reader :compute
+
+end