12 lines
214 B
Ruby
12 lines
214 B
Ruby
require "hbc/artifact/abstract_uninstall"
|
|
|
|
module Hbc
|
|
module Artifact
|
|
class Zap < AbstractUninstall
|
|
def zap_phase(**options)
|
|
dispatch_uninstall_directives(**options)
|
|
end
|
|
end
|
|
end
|
|
end
|