summaryrefslogtreecommitdiff
path: root/app/models/blob_viewer/binary_stl.rb
blob: 425f72decae345a30ab5c9627d980d39001a560e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module BlobViewer
  class BinarySTL < Base
    include Rich
    include ClientSide

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