fog--fog/lib/fog/response.rb

13 lines
160 B
Ruby
Raw Normal View History

module Fog
class Response
attr_accessor :body, :headers, :request, :status
def initialize
@body = ''
@headers = {}
end
end
end