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

14 lines
256 B
Ruby

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