1
0
mirror of https://github.com/cmur2/dyndnsd.git synced 2025-06-26 12:30:18 +02:00
Files
dyndnsd/spec/support/dummy_updater.rb
2020-03-06 21:48:17 +01:00

12 lines
148 B
Ruby

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