brew/Library/Homebrew/cask/dsl/preflight.rb
2022-07-11 17:13:16 -07:00

16 lines
238 B
Ruby

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