1
0
mirror of https://github.com/cmur2/dyndnsd.git synced 2024-11-14 16:56:14 +01:00
dyndnsd/spec/support/dummy_updater.rb
2020-02-29 14:07:46 +01:00

12 lines
132 B
Ruby

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