brew/Library/Homebrew/cask/dsl/uninstall_preflight.rb
2020-08-26 03:13:59 +02:00

15 lines
241 B
Ruby

# frozen_string_literal: true
require "cask/staged"
module Cask
class DSL
# Class corresponding to the `uninstall_preflight` stanza.
#
# @api private
class UninstallPreflight < Base
include Staged
end
end
end