Douglas Eichelberger d25956668d Fix tests
2024-03-29 19:12:25 -07:00

19 lines
301 B
Ruby

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