diff options
Diffstat (limited to 'lib/github/representation/base.rb')
| -rw-r--r-- | lib/github/representation/base.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/github/representation/base.rb b/lib/github/representation/base.rb new file mode 100644 index 00000000000..6765bfb803b --- /dev/null +++ b/lib/github/representation/base.rb @@ -0,0 +1,13 @@ +module Github + module Representation + class Base + def initialize(raw) + @raw = raw + end + + private + + attr_reader :raw + end + end +end |
