mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-01-04 04:04:02 +00:00
8 lines
112 B
Go
8 lines
112 B
Go
package credentials
|
|
|
|
import "os"
|
|
|
|
func DefaultStoreDirectory() string {
|
|
return os.TempDir() + "/credentials"
|
|
}
|