mirror of
https://github.com/cmur2/dyndnsd.git
synced 2024-11-14 06:56:15 +01:00
12 lines
148 B
Ruby
12 lines
148 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Dyndnsd
|
|
module Updater
|
|
class Dummy
|
|
def update(zone)
|
|
# nothing
|
|
end
|
|
end
|
|
end
|
|
end
|