mirror of
https://github.com/docker/docs.git
synced 2026-04-12 06:19:22 +07: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)
|
|
}
|