mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
13 lines
247 B
Ruby
13 lines
247 B
Ruby
# typed: strict
|
|
# frozen_string_literal: true
|
|
|
|
module Cask
|
|
# Helper functions for the cask cache.
|
|
module Cache
|
|
sig { returns(Pathname) }
|
|
def self.path
|
|
@path ||= T.let(HOMEBREW_CACHE/"Cask", T.nilable(Pathname))
|
|
end
|
|
end
|
|
end
|