mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
12 lines
226 B
Ruby
12 lines
226 B
Ruby
require "hbc/artifact/abstract_uninstall"
|
|
|
|
module Hbc
|
|
module Artifact
|
|
class Uninstall < AbstractUninstall
|
|
def uninstall_phase(**options)
|
|
dispatch_uninstall_directives(**options)
|
|
end
|
|
end
|
|
end
|
|
end
|