mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
20 lines
492 B
Ruby
20 lines
492 B
Ruby
# typed: strict
|
|
# frozen_string_literal: true
|
|
|
|
module Services
|
|
module Commands
|
|
module Start
|
|
TRIGGERS = %w[start launch load s l].freeze
|
|
|
|
sig {
|
|
params(targets: T::Array[Services::FormulaWrapper], custom_plist: T.nilable(String),
|
|
verbose: T.nilable(T::Boolean)).void
|
|
}
|
|
def self.run(targets, custom_plist, verbose:)
|
|
Services::Cli.check(targets)
|
|
Services::Cli.start(targets, custom_plist, verbose:)
|
|
end
|
|
end
|
|
end
|
|
end
|