12 lines
217 B
Ruby
12 lines
217 B
Ruby
module Iqdb
|
|
module Responses
|
|
class Response_102 < Base
|
|
attr_reader :dbid, :filename
|
|
|
|
def initialize(response_string)
|
|
@dbid, @filename = response_string.split(/ /)
|
|
end
|
|
end
|
|
end
|
|
end
|