Douglas Eichelberger d01cda2815 Turn up the types
2023-08-12 22:01:22 -07:00

12 lines
144 B
Ruby

# typed: strict
# frozen_string_literal: true
require "help"
module Homebrew
sig { returns(T.noreturn) }
def help
Help.help
end
end