dyndnsd/spec/support/dummy_updater.rb

12 lines
148 B
Ruby
Raw Normal View History

2020-03-06 21:33:29 +01:00
# frozen_string_literal: true
2013-04-27 14:07:14 +02:00
module Dyndnsd
module Updater
class Dummy
def update(zone)
# nothing
end
end
end
end