mirror of
https://github.com/clearlinux/docker.git
synced 2026-09-04 04:31:28 +00:00
12 lines
141 B
Go
12 lines
141 B
Go
// +build !windows
|
|
|
|
package system
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func MkdirAll(path string, perm os.FileMode) error {
|
|
return os.MkdirAll(path, perm)
|
|
}
|