12 lines
214 B
Ruby
Raw Normal View History

require "hbc/artifact/abstract_uninstall"
2016-08-18 22:11:42 +03:00
2016-09-24 13:52:43 +02:00
module Hbc
module Artifact
class Zap < AbstractUninstall
def zap_phase(**options)
dispatch_uninstall_directives(**options)
2016-09-24 13:52:43 +02:00
end
end
2016-08-18 22:11:42 +03:00
end
end