mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
13 lines
239 B
Go
13 lines
239 B
Go
|
// +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd
|
||
|
|
||
|
package utils
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
// TempDir returns the default directory to use for temporary files.
|
||
|
func TempDir(rootdir string) (string error) {
|
||
|
return os.TempDir(), nil
|
||
|
}
|