1
0
mirror of https://github.com/cmur2/dyndnsd.git synced 2024-12-22 10:54:23 +01:00
dyndnsd/spec/support/dummy_updater.rb
2020-02-29 14:12:45 +01:00

12 lines
132 B
Ruby

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