mirror of
https://github.com/pgsty/minio.git
synced 2026-08-08 15:23:29 +03:00
8 lines
128 B
Go
8 lines
128 B
Go
package miniotest
|
|
|
|
import "io/ioutil"
|
|
|
|
func MakeTempTestDir() (string, error) {
|
|
return ioutil.TempDir("/tmp", "minio-test-")
|
|
}
|