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

module BlobViewer
  class Download < Base
    include Simple
    include Static

    self.partial_name = 'download'
    self.binary = true
  end
end