Files
danbooru/app/logical/iqdb/responses/response_101.rb
2014-03-24 13:22:03 -07:00

12 lines
210 B
Ruby

module Iqdb
module Responses
class Response_101 < Base
attr_reader :key, :value
def initialize(response_string)
@key, @value = response_string.split(/\=/)
end
end
end
end