gitlab-org--gitlab-foss/lib/github/representation/base.rb
2017-04-24 16:17:52 -03:00

13 lines
165 B
Ruby

module Github
module Representation
class Base
def initialize(raw)
@raw = raw
end
private
attr_reader :raw
end
end
end