Welcome to mirror list, hosted at ThFree Co, Russian Federation.

empty.rb « blob_viewer « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d9d128eb273707625d480cbf0b40992e8ac2c728 (plain)
1
2
3
4
5
6
7
8
9
module BlobViewer
  class Empty < Base
    include Simple
    include ServerSide

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