blob: 5f4732f79af8ddb562e1dff76c4abda37627c56a [file] [log] [blame]
// Package cache provides an interface for interfacing with the Glide local cache
package cache
import (
"path/filepath"
gpath "github.com/Masterminds/glide/path"
)
// Location returns the location of the cache.
func Location() string {
return filepath.Join(gpath.Home(), "cache")
}