mirror of
https://github.com/kemko/nomad.git
synced 2026-01-04 01:15:43 +03:00
9 lines
206 B
Go
9 lines
206 B
Go
package allocdir
|
|
|
|
import "io/ioutil"
|
|
|
|
// TestCreateSecretDirFn is used to create a secret dir suitable for testing
|
|
func TestCreateSecretDirFn(_, _ string) (string, error) {
|
|
return ioutil.TempDir("", "")
|
|
}
|