21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-17 16:08:39 +02:00
chexpire/app/services/whois/parser/entry/text.rb

17 lines
249 B
Ruby
Raw Normal View History

2018-05-30 12:04:07 +02:00
require_relative "base"
module Whois
module Parser
module Entry
class Text < Base
attr_reader :text
def initialize(index, text)
super index
@text = text.strip
end
end
end
end
end