mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
13 lines
245 B
Ruby
13 lines
245 B
Ruby
# typed: strict
|
|
# frozen_string_literal: true
|
|
|
|
require "cask/artifact/abstract_flight_block"
|
|
|
|
module Cask
|
|
module Artifact
|
|
# Artifact corresponding to the `preflight` stanza.
|
|
class PreflightBlock < AbstractFlightBlock
|
|
end
|
|
end
|
|
end
|