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

14 lines
254 B
Ruby

# frozen_string_literal: true
require "cask/artifact/abstract_flight_block"
module Cask
module Artifact
# Artifact corresponding to the `preflight` stanza.
#
# @api private
class PreflightBlock < AbstractFlightBlock
end
end
end