brew/Library/Homebrew/cask/artifact/postflight_block.rb
2024-04-26 19:04:20 +02:00

13 lines
247 B
Ruby

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