mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
17 lines
392 B
Ruby
17 lines
392 B
Ruby
# typed: strict
|
|
# frozen_string_literal: true
|
|
|
|
module Service
|
|
module Commands
|
|
module Run
|
|
TRIGGERS = ["run"].freeze
|
|
|
|
sig { params(targets: T::Array[Service::FormulaWrapper], verbose: T.nilable(T::Boolean)).void }
|
|
def self.run(targets, verbose:)
|
|
Service::ServicesCli.check(targets)
|
|
Service::ServicesCli.run(targets, verbose:)
|
|
end
|
|
end
|
|
end
|
|
end
|