1
0
mirror of https://github.com/cmur2/dyndnsd.git synced 2024-06-02 06:34:40 +02:00
dyndnsd/spec/support/dummy_updater.rb

12 lines
148 B
Ruby

# frozen_string_literal: true
module Dyndnsd
module Updater
class Dummy
def update(zone)
# nothing
end
end
end
end