2023-08-08 13:54:59 -07:00
|
|
|
# typed: strict
|
2021-05-12 16:07:47 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Homebrew
|
2023-08-08 13:54:59 -07:00
|
|
|
DEFAULT_PREFIX = T.let(ENV.fetch("HOMEBREW_DEFAULT_PREFIX").freeze, String)
|
|
|
|
DEFAULT_REPOSITORY = T.let(ENV.fetch("HOMEBREW_DEFAULT_REPOSITORY").freeze, String)
|
2021-05-12 16:07:47 +01:00
|
|
|
end
|