12 lines
226 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 Uninstall < AbstractUninstall
def uninstall_phase(**options)
dispatch_uninstall_directives(**options)
2017-02-10 07:49:21 +01:00
end
2016-09-24 13:52:43 +02:00
end
end
2016-08-18 22:11:42 +03:00
end