summaryrefslogtreecommitdiff
path: root/app/models/blob_viewer/binary_stl.rb
blob: 6cb54d49d86682982abf009ba8c5111141b9451e (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.text_based = false
  end
end