Files
2021-02-11 16:02:18 +01:00

14 lines
183 B
Ruby

module API
module Caching
class StoredRepresenter
def initialize(json)
@json = json
end
def to_json(*_args)
@json
end
end
end
end