1
0
mirror of https://github.com/cmur2/dyndnsd.git synced 2026-03-03 05:01:40 +01: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