1
0
mirror of https://github.com/minio/minio.git synced 2025-03-24 22:44:16 -04:00

8 lines
128 B
Go
Raw Normal View History

package miniotest
import "io/ioutil"
func MakeTempTestDir() (string, error) {
return ioutil.TempDir("/tmp", "minio-test-")
}