summaryrefslogtreecommitdiff
path: root/app/models/blob_viewer/binary_stl.rb
blob: 80393471ef2d16e993698ca4b636d3c82bbd6f95 (plain)
1
2
3
4
5
6
7
8
9
10
module BlobViewer
  class BinarySTL < Base
    include Rich
    include ClientSide

    self.partial_name = 'stl'
    self.extensions = %w(stl)
    self.binary = true
  end
end