21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-07-01 21:42:52 +02:00
chexpire/app/services/whois/parser/entry/blank.rb
2018-05-30 17:01:32 +02:00

14 lines
170 B
Ruby

require_relative "base"
module Whois
module Parser
module Entry
class Blank < Base
def blank?
true
end
end
end
end
end