mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
15 lines
272 B
Ruby
15 lines
272 B
Ruby
# typed: strict
|
|
# 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
|