mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-15 19:56:59 +08:00
16 lines
224 B
Ruby
16 lines
224 B
Ruby
# typed: true
|
|
# frozen_string_literal: true
|
|
|
|
module Cask
|
|
# Helper functions for the cask cache.
|
|
#
|
|
# @api private
|
|
module Cache
|
|
module_function
|
|
|
|
def path
|
|
@path ||= HOMEBREW_CACHE/"Cask"
|
|
end
|
|
end
|
|
end
|