mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
17 lines
327 B
Ruby
17 lines
327 B
Ruby
# typed: true # rubocop:todo Sorbet/StrictSigil
|
|
# frozen_string_literal: true
|
|
|
|
module Homebrew
|
|
module Bundle
|
|
module Commands
|
|
module Add
|
|
module_function
|
|
|
|
def run(*args, type:, global:, file:)
|
|
Homebrew::Bundle::Adder.add(*args, type:, global:, file:)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|