summaryrefslogtreecommitdiff
path: root/lib/bitbucket/representation/base.rb
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