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

base.rb « representation « bitbucket « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b639492d388b11477bcb4e40219f864bc88a1dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Bitbucket
  module Representation
    class Base
      def initialize(raw)
        @raw = raw
      end

      private

      attr_reader :raw
    end
  end
end