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

12 lines
190 B
Ruby

module Iqdb
module Responses
class Response_100 < Base
attr_reader :message
def initialize(response_string)
@message = response_string
end
end
end
end