2024-03-29 18:53:08 -07:00

17 lines
243 B
Ruby

# typed: strong
# frozen_string_literal: true
require "abstract_command"
require "help"
module Homebrew
module Cmd
class HelpCmd < AbstractCommand
sig { override.void }
def run
Help.help
end
end
end
end