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

wiki_file.rb « gitaly_client « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 47c60c92484a6c79af4a1fe6c224c52bedb0bcd7 (plain)
1
2
3
4
5
6
7
8
9
module Gitlab
  module GitalyClient
    class WikiFile
      ATTRS = %i(name mime_type path raw_data).freeze

      include AttributesBag
    end
  end
end