summaryrefslogtreecommitdiff
path: root/lib/github/representation/base.rb
blob: 6765bfb803b1087d5a09f92305e59da9bcf1e781 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Github
  module Representation
    class Base
      def initialize(raw)
        @raw = raw
      end

      private

      attr_reader :raw
    end
  end
end