2024-03-30 16:50:28 -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