21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-07-03 22:42:53 +02:00
chexpire/app/services/whois/parser/entry/blank.rb

14 lines
170 B
Ruby
Raw Normal View History

2018-05-30 12:04:07 +02:00
require_relative "base"
module Whois
module Parser
module Entry
class Blank < Base
def blank?
true
end
end
end
end
end