13 lines
165 B
Ruby
13 lines
165 B
Ruby
module Github
|
|
module Representation
|
|
class Base
|
|
def initialize(raw)
|
|
@raw = raw
|
|
end
|
|
|
|
private
|
|
|
|
attr_reader :raw
|
|
end
|
|
end
|
|
end
|