mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
17 lines
243 B
Ruby
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
|